Necessary Packages
library(vegan)
library(ggplot2)
library(ggpubr)
library(pairwiseAdonis)
library(reshape2)
library(phyloseq)
library(userfriendlyscience)
library(microbiome)
library(themetagenomics)
library(car)
library(betareg)
library(fitdistrplus)
library(RColorBrewer)
library(emmeans)
library(multcompView)
Fig. 1 - Growth of Fish During Experiment
TW_raw<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TW_Analysis/Ch_2_TW_ANALYSIS.csv", header = TRUE)
levels(TW_raw$TREATMENT)[c(1:6)]<-c("A1","A2","A3","Z1","Z2","Z3")
Plot data (Date + Treament = Factor) –> TANK EFFECT
TW_W1<-TW_raw[which(TW_raw$DATE=="1W"),]
TW_W2<-TW_raw[which(TW_raw$DATE=="2W"),]
TW_W3<-TW_raw[which(TW_raw$DATE=="3W"),]
TW_W4<-TW_raw[which(TW_raw$DATE=="4W"),]
TW_1<-ggplot(TW_W1, aes(x=TREATMENT, y = TW.g., fill = GROUP)) + geom_boxplot() + ylim(0, 0.65) + theme(axis.title.x = element_blank()) + annotate("text", label = c("A","AC","ABC","B","BC","B"), y = c(0.07, 0.07, 0.06, 0.05, 0.06, 0.05), x = c(1:6), size = 3) + theme(panel.background = element_rect(fill = "white", colour = "black")) + ylab("Total Weight(g)") + xlab("") + theme_classic()
TW_2<-ggplot(TW_W2, aes(x=TREATMENT, y = TW.g., fill = GROUP)) + geom_boxplot() + ylim(0, 0.65) + theme(axis.title.x = element_blank(), axis.title.y = element_blank(), axis.text.y = element_blank(), axis.ticks.y = element_blank()) + annotate("text", label = c("A","A","AB","B","B"), y = c(0.12, 0.12, 0.06, 0.07, 0.07), x = c(1:5), size = 3) + theme(panel.background = element_rect(fill = "white", colour = "black")) + ylab("") + theme_classic() + xlab("")
TW_3<-ggplot(TW_W3, aes(x=TREATMENT, y = TW.g., fill = GROUP)) + geom_boxplot() + ylim(0, 0.65) + theme(axis.title.x = element_blank(), axis.title.y = element_blank(), axis.text.y = element_blank(), axis.ticks.y = element_blank()) + annotate("text", label = c("AB","AB","B","A","A","A"), y = c(0.25, 0.37, 0.30, 0.15, 0.17, 0.16), x = c(1:6), size = 3) + theme(panel.background = element_rect(fill = "white", colour = "black")) + ylab("")+ theme_classic() + xlab("")
TW_4<-ggplot(TW_W4, aes(x=TREATMENT, y = TW.g., fill = GROUP)) + geom_boxplot() + ylim(0, 0.65) + theme(axis.title.x = element_blank(), axis.title.y = element_blank(), axis.text.y = element_blank(), axis.ticks.y = element_blank()) + annotate("text", label = c("AB","AB","A","B","B","B"), y = c(0.49, 0.56, 0.61, 0.34, 0.31, 0.21), x = c(1:6), size = 3) + theme(panel.background = element_rect(fill = "white", colour = "black")) + ylab("")+ theme_classic() + xlab("")
TW_FINAL<-ggarrange(TW_1, TW_2, TW_3, TW_4, ncol=4, nrow=1, common.legend = TRUE, legend = c("right"), widths = c(1.1,1,1,1), labels = c("Week 1", "Week 2", "Week 3", "Week 4"), hjust = c(-.77, -.77, -.77, -.77), vjust = 1.75)
TW_FINAL
Welch’s Test / Week with post-hoc Games Howell –> TANK EFFECT
TW_W1<-subset(TW_raw, DATE =="1W")
TW_W2<-subset(TW_raw, DATE == "2W")
TW_W3<-subset(TW_raw, DATE == "3W")
TW_W4<-subset(TW_raw, DATE == "4W")
W1_Welch<-oneway.test(TW.g.~TREATMENT, data=TW_W1)
W2_Welch<-oneway.test(TW.g.~TREATMENT, data=TW_W2)
W3_Welch<-oneway.test(TW.g.~TREATMENT, data=TW_W3)
W4_Welch<-oneway.test(TW.g.~TREATMENT, data=TW_W4)
print(W1_Welch)
##
## One-way analysis of means (not assuming equal variances)
##
## data: TW.g. and TREATMENT
## F = 6.8454, num df = 5.0000, denom df = 8.8012, p-value = 0.007111
print(W2_Welch)
##
## One-way analysis of means (not assuming equal variances)
##
## data: TW.g. and TREATMENT
## F = 25.608, num df = 4.0000, denom df = 9.4649, p-value =
## 4.471e-05
print(W3_Welch)
##
## One-way analysis of means (not assuming equal variances)
##
## data: TW.g. and TREATMENT
## F = 9.6814, num df = 5.000, denom df = 12.707, p-value = 0.0005429
print(W4_Welch)
##
## One-way analysis of means (not assuming equal variances)
##
## data: TW.g. and TREATMENT
## F = 11.969, num df = 5.0000, denom df = 6.9035, p-value = 0.002676
W1_PH<-posthocTGH(y = TW_W1$TW.g., x = TW_W1$TREATMENT, method = "games-howell")
W1_PH
## n means variances
## A1 5 0.048 7.0e-05
## A2 4 0.045 3.3e-05
## A3 4 0.037 2.5e-05
## Z1 5 0.026 8.0e-05
## Z2 5 0.030 5.0e-05
## Z3 3 0.023 3.3e-05
##
## diff ci.lo ci.hi t df p
## A2-A1 -0.0030 -0.021 1.5e-02 0.63 6.9 .98
## A3-A1 -0.0105 -0.028 6.8e-03 2.33 6.6 .3
## Z1-A1 -0.0220 -0.042 -2.0e-03 4.02 8.0 .03
## Z2-A1 -0.0180 -0.036 2.7e-05 3.67 7.8 .05
## Z3-A1 -0.0247 -0.045 -4.4e-03 4.92 5.7 .02
## A3-A2 -0.0075 -0.023 7.8e-03 1.96 5.9 .45
## Z1-A2 -0.0190 -0.038 -1.4e-04 3.85 6.8 .05
## Z2-A2 -0.0150 -0.031 1.2e-03 3.50 7.0 .07
## Z3-A2 -0.0217 -0.041 -1.9e-03 4.91 4.5 .04
## Z1-A3 -0.0115 -0.030 6.8e-03 2.44 6.4 .27
## Z2-A3 -0.0075 -0.023 7.8e-03 1.86 6.9 .49
## Z3-A3 -0.0142 -0.034 5.5e-03 3.40 4.0 .14
## Z2-Z1 0.0040 -0.015 2.3e-02 0.78 7.6 .96
## Z3-Z1 -0.0027 -0.024 1.8e-02 0.51 5.8 .99
## Z3-Z2 -0.0067 -0.026 1.3e-02 1.45 5.1 .7
TW_W2$TREATMENT<-as.character(TW_W2$TREATMENT)
TW_W2$TREATMENT<-factor(TW_W2$TREATMENT, levels = c("A2", "A3", "Z1", "Z2", "Z3"))
W2_PH<-posthocTGH(y = TW_W2$TW.g., x = TW_W2$TREATMENT, method = "games-howell")
W2_PH
## n means variances
## A2 5 0.094 0.00013
## A3 5 0.078 0.00057
## Z1 5 0.034 0.00003
## Z2 5 0.042 0.00002
## Z3 5 0.042 0.00017
##
## diff ci.lo ci.hi t df p
## A3-A2 -0.016 -0.061 0.0291 1.4 5.7 .67
## Z1-A2 -0.060 -0.082 -0.0385 10.6 5.8 <.01
## Z2-A2 -0.052 -0.074 -0.0304 9.5 5.2 <.01
## Z3-A2 -0.052 -0.079 -0.0251 6.7 7.9 <.01
## Z1-A3 -0.044 -0.090 0.0024 4.0 4.4 .06
## Z2-A3 -0.036 -0.083 0.0107 3.3 4.3 .12
## Z3-A3 -0.036 -0.081 0.0092 3.0 6.2 .12
## Z2-Z1 0.008 -0.003 0.0190 2.5 7.7 .18
## Z3-Z1 0.008 -0.017 0.0327 1.3 5.4 .72
## Z3-Z2 0.000 -0.025 0.0249 0.0 4.9 1
W3_PH<-posthocTGH(y = TW_W3$TW.g., x = TW_W3$TREATMENT, method = "games-howell")
W3_PH
## n means variances
## A1 5 0.18 0.0019
## A2 6 0.23 0.0056
## A3 5 0.24 0.0016
## Z1 7 0.11 0.0006
## Z2 6 0.12 0.0011
## Z3 6 0.13 0.0007
##
## diff ci.lo ci.hi t df p
## A2-A1 0.0553 -0.076 0.1870 1.53 8.2 .66
## A3-A1 0.0660 -0.030 0.1621 2.51 7.9 .23
## Z1-A1 -0.0637 -0.150 0.0224 2.97 5.8 .15
## Z2-A1 -0.0613 -0.150 0.0268 2.58 7.6 .21
## Z3-A1 -0.0463 -0.133 0.0400 2.09 6.4 .39
## A3-A2 0.0107 -0.119 0.1408 0.30 7.8 1
## Z1-A2 -0.1190 -0.247 0.0089 3.72 5.9 .07
## Z2-A2 -0.1167 -0.244 0.0109 3.47 7.0 .07
## Z3-A2 -0.1017 -0.229 0.0260 3.13 6.2 .12
## Z1-A3 -0.1297 -0.209 -0.0507 6.48 6.1 <.01
## Z2-A3 -0.1273 -0.210 -0.0450 5.65 8.0 <.01
## Z3-A3 -0.1123 -0.192 -0.0327 5.40 6.8 .01
## Z2-Z1 0.0024 -0.057 0.0615 0.14 9.0 1
## Z3-Z1 0.0174 -0.032 0.0663 1.23 10.4 .82
## Z3-Z2 0.0150 -0.047 0.0766 0.86 9.4 .95
W4_PH<-posthocTGH(y = TW_W4$TW.g., x = TW_W4$TREATMENT, method = "games-howell")
W4_PH
## n means variances
## A1 3 0.35 0.0289
## A2 4 0.43 0.0078
## A3 4 0.52 0.0049
## Z1 4 0.27 0.0051
## Z2 4 0.24 0.0016
## Z3 3 0.15 0.0025
##
## diff ci.lo ci.hi t df p
## A2-A1 0.074 -0.57 0.717 0.69 2.8 .97
## A3-A1 0.167 -0.52 0.852 1.60 2.5 .65
## Z1-A1 -0.081 -0.76 0.600 0.77 2.5 .95
## Z2-A1 -0.111 -0.87 0.651 1.11 2.2 .85
## Z3-A1 -0.203 -0.92 0.514 1.99 2.3 .52
## A3-A2 0.093 -0.14 0.320 1.65 5.7 .6
## Z1-A2 -0.155 -0.38 0.074 2.73 5.8 .2
## Z2-A2 -0.185 -0.41 0.039 3.83 4.2 .09
## Z3-A2 -0.277 -0.51 -0.049 5.27 4.8 .02
## Z1-A3 -0.247 -0.45 -0.049 4.96 6.0 .02
## Z2-A3 -0.278 -0.45 -0.103 6.92 4.7 .01
## Z3-A3 -0.370 -0.56 -0.177 8.17 5.0 <.01
## Z2-Z1 -0.030 -0.21 0.149 0.74 4.7 .97
## Z3-Z1 -0.123 -0.32 0.073 2.67 5.0 .23
## Z3-Z2 -0.092 -0.26 0.079 2.65 3.8 .27
Plot Combined Data (No Significant Difference between tanks) SummarySE function courtesy of R Cookbook (http://www.cookbook-r.com/Graphs/Plotting_means_and_error_bars_(ggplot2)/#Helper%20functions)
summarySE <- function(data=NULL, measurevar, groupvars=NULL, na.rm=FALSE,
conf.interval=.95, .drop=TRUE) {
library(plyr)
length2 <- function (x, na.rm=FALSE) {
if (na.rm) sum(!is.na(x))
else length(x)
}
datac <- ddply(data, groupvars, .drop=.drop,
.fun = function(xx, col) {
c(N = length2(xx[[col]], na.rm=na.rm),
mean = mean (xx[[col]], na.rm=na.rm),
sd = sd (xx[[col]], na.rm=na.rm)
)
},
measurevar
)
datac <- rename(datac, c("mean" = measurevar))
datac$se <- datac$sd / sqrt(datac$N)
ciMult <- qt(conf.interval/2 + .5, datac$N-1)
datac$ci <- datac$se * ciMult
return(datac)
}
pd<-position_dodge(width=0.1)
TW_raw_sum<-summarySE(TW_raw, measurevar = "TW.g.", groupvars = c("GROUP", "DATE"))
##
## Attaching package: 'plyr'
## The following object is masked from 'package:ggpubr':
##
## mutate
TW_raw_sum
## GROUP DATE N TW.g. sd se ci
## 1 ARTEMIA 1W 13 0.04384615 0.007679476 0.002129904 0.004640661
## 2 ARTEMIA 2W 10 0.08600000 0.019550504 0.006182412 0.013985588
## 3 ARTEMIA 3W 16 0.21937500 0.060384187 0.015096047 0.032176462
## 4 ARTEMIA 4W 11 0.44090909 0.120204371 0.036242982 0.080754396
## 5 ZOOPLANKTON 1W 13 0.02692308 0.007510676 0.002083087 0.004538656
## 6 ZOOPLANKTON 2W 15 0.03933333 0.008837151 0.002281743 0.004893851
## 7 ZOOPLANKTON 3W 19 0.12052632 0.027783625 0.006374001 0.013391279
## 8 ZOOPLANKTON 4W 11 0.22818182 0.072085807 0.021734689 0.048427904
TW_COMBINED_FINAL<-ggplot(TW_raw_sum, aes(x=DATE, y=TW.g., group=GROUP, colour=GROUP)) + geom_errorbar(aes(ymin=TW.g.-se, ymax=TW.g.+se), width=.1, position=pd) + geom_line(position=pd) + geom_point(position=pd) + theme_classic() + ylab("Total Weight (g)") + xlab("Date") + labs(title="Age-0 Northern Pike Growth Rates", subtitle = "Artemia vs. Zooplankton Diets") + annotate("text", label = c("A","B", "A", "B", "A", "B", "A", "B"), y = c(0.01, 0.06, 0.025, 0.11, 0.105, 0.24, 0.19, 0.485), x = c(1, 1, 2, 2, 3, 3, 4, 4), size=4, fontface = 2)
TW_COMBINED_FINAL
Welch’s Two Sample t-test (weight vs. week)
TW_T_TEST<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TW_Analysis/CH_2T_TEST_TW_ANALYSIS.csv", header=TRUE)
TW_T_TEST_W1<-subset(TW_T_TEST, DATE=="1W")
TW_T_TEST_W2<-subset(TW_T_TEST, DATE=="2W")
TW_T_TEST_W3<-subset(TW_T_TEST, DATE=="3W")
TW_T_TEST_W4<-subset(TW_T_TEST, DATE=="4W")
t_test_W1<-t.test(TW_T_TEST_W1$ARTEMIA, TW_T_TEST_W1$ZOOPLANKTON, var.equal = FALSE, paired=FALSE)
t_test_W1
##
## Welch Two Sample t-test
##
## data: TW_T_TEST_W1$ARTEMIA and TW_T_TEST_W1$ZOOPLANKTON
## t = 5.9565, df = 25.339, p-value = 3.051e-06
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## 0.01168702 0.02402727
## sample estimates:
## mean of x mean of y
## 0.04500000 0.02714286
t_test_W2<-t.test(TW_T_TEST_W2$ARTEMIA, TW_T_TEST_W2$ZOOPLANKTON, var.equal = FALSE, paired=FALSE)
t_test_W2
##
## Welch Two Sample t-test
##
## data: TW_T_TEST_W2$ARTEMIA and TW_T_TEST_W2$ZOOPLANKTON
## t = 9.851, df = 20.864, p-value = 2.685e-09
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## 0.03891465 0.05975202
## sample estimates:
## mean of x mean of y
## 0.08866667 0.03933333
t_test_W3<-t.test(TW_T_TEST_W2$ARTEMIA, TW_T_TEST_W3$ZOOPLANKTON, var.equal = FALSE, paired=FALSE)
t_test_W3
##
## Welch Two Sample t-test
##
## data: TW_T_TEST_W2$ARTEMIA and TW_T_TEST_W3$ZOOPLANKTON
## t = -4.269, df = 30.736, p-value = 0.0001745
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## -0.05221976 -0.01844690
## sample estimates:
## mean of x mean of y
## 0.08866667 0.12400000
t_test_W4<-t.test(TW_T_TEST_W4$ARTEMIA, TW_T_TEST_W4$ZOOPLANKTON, var.equal = FALSE, paired=FALSE)
t_test_W4
##
## Welch Two Sample t-test
##
## data: TW_T_TEST_W4$ARTEMIA and TW_T_TEST_W4$ZOOPLANKTON
## t = 5.2299, df = 15.902, p-value = 8.421e-05
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## 0.1293394 0.3058121
## sample estimates:
## mean of x mean of y
## 0.4409091 0.2233333
Plot Growth (gram tissue day^-1 vs. week)
TW_raw_GROWTH<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TW_Analysis/CH_2_TW_GROWTH_Analysis.csv", header = TRUE)
TW_raw_GROWTH_FINAL<-ggplot(TW_raw_GROWTH, aes(x=D_1, y=GROWTH, group=FEED, colour=FEED)) + geom_line(position=pd) + geom_point(position=pd) + theme_classic() + labs(title="Age-0 Northern Pike Growth Rates", subtitle = "Artemia vs. Zooplankton Diets", x = "Date", y = bquote('Growth'~(grams~day^-1))) + scale_y_continuous(breaks = seq(0, 0.032, by = 0.005))
TW_raw_GROWTH_FINAL
Welch’s T-test (Growth)
TW_Growth_T_TEST_DATA<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TW_Analysis/CH_2_TW_GROWTH_LONG.csv", header=TRUE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TW_Analysis/
## CH_2_TW_GROWTH_LONG.csv'
t_test_GROWTH_FINAL<-t.test(TW_Growth_T_TEST_DATA$ARTEMIA, TW_Growth_T_TEST_DATA$ZOOPLANKTON, var.equal = FALSE, paired = FALSE)
t_test_GROWTH_FINAL
##
## Welch Two Sample t-test
##
## data: TW_Growth_T_TEST_DATA$ARTEMIA and TW_Growth_T_TEST_DATA$ZOOPLANKTON
## t = 1.1398, df = 3.0071, p-value = 0.337
## alternative hypothesis: true difference in means is not equal to 0
## 95 percent confidence interval:
## -0.01700895 0.03602977
## sample estimates:
## mean of x mean of y
## 0.018852814 0.009342404
Temperature
TEMP_raw<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TEMP_DO_ANALYSIS/CH_2_TEMP_ANALYSIS.csv", header=TRUE)
TEMP_FINAL<-ggplot(TEMP_raw, aes(Time)) + geom_line(aes(y=TEMP_ARTEMIA_1, colour = "Artemia 1", group=1)) + geom_line(aes(y = TEMP_ARTEMIA_2, colour = "Artemia 2", group = 1)) + geom_line(aes(y = TEMP_ARTEMIA_3, colour = "Artemia 3", group = 1)) + geom_line(aes(y = TEMP_ZOOPLANKTON_1, colour = "Zooplankton 1")) + geom_line(aes(y = TEMP_ZOOPLANKTON_2, colour = "Zooplankton 2")) + geom_line(aes(y=TEMP_ZOOPLANKTON_3, colour = "Zooplankton 3")) + xlab("Time(Days)") + ylab(expression('Temperature('*~degree*C*')')) + labs(colour = 'Treatment') + labs(title = "Treatment Tank Temperatures", subtitle = "Artemia vs. Zooplankton") + theme_classic()
TEMP_FINAL
## Warning: Removed 1 rows containing missing values (geom_path).
## Warning: Removed 4 rows containing missing values (geom_path).
## Warning: Removed 4 rows containing missing values (geom_path).
TEMP_long<-melt(TEMP_raw, id="Time")
oneway.test(value~variable, data=TEMP_long)
##
## One-way analysis of means (not assuming equal variances)
##
## data: value and variable
## F = 1.4847, num df = 5.000, denom df = 82.522, p-value = 0.2037
TEMP_long
## Time variable value
## 1 1 TEMP_ARTEMIA_1 13.5
## 2 2 TEMP_ARTEMIA_1 13.5
## 3 3 TEMP_ARTEMIA_1 14.3
## 4 4 TEMP_ARTEMIA_1 13.7
## 5 5 TEMP_ARTEMIA_1 15.4
## 6 6 TEMP_ARTEMIA_1 14.9
## 7 7 TEMP_ARTEMIA_1 16.2
## 8 8 TEMP_ARTEMIA_1 14.9
## 9 9 TEMP_ARTEMIA_1 15.5
## 10 10 TEMP_ARTEMIA_1 15.0
## 11 11 TEMP_ARTEMIA_1 14.9
## 12 12 TEMP_ARTEMIA_1 15.2
## 13 13 TEMP_ARTEMIA_1 15.0
## 14 14 TEMP_ARTEMIA_1 15.2
## 15 15 TEMP_ARTEMIA_1 15.1
## 16 16 TEMP_ARTEMIA_1 15.8
## 17 17 TEMP_ARTEMIA_1 16.3
## 18 18 TEMP_ARTEMIA_1 16.8
## 19 19 TEMP_ARTEMIA_1 16.2
## 20 20 TEMP_ARTEMIA_1 17.3
## 21 21 TEMP_ARTEMIA_1 17.2
## 22 22 TEMP_ARTEMIA_1 16.9
## 23 23 TEMP_ARTEMIA_1 17.1
## 24 24 TEMP_ARTEMIA_1 17.1
## 25 25 TEMP_ARTEMIA_1 14.4
## 26 26 TEMP_ARTEMIA_1 15.3
## 27 27 TEMP_ARTEMIA_1 16.2
## 28 28 TEMP_ARTEMIA_1 16.7
## 29 29 TEMP_ARTEMIA_1 16.4
## 30 30 TEMP_ARTEMIA_1 16.7
## 31 31 TEMP_ARTEMIA_1 16.8
## 32 32 TEMP_ARTEMIA_1 NA
## 33 1 TEMP_ARTEMIA_2 13.8
## 34 2 TEMP_ARTEMIA_2 13.9
## 35 3 TEMP_ARTEMIA_2 14.5
## 36 4 TEMP_ARTEMIA_2 14.1
## 37 5 TEMP_ARTEMIA_2 15.1
## 38 6 TEMP_ARTEMIA_2 14.8
## 39 7 TEMP_ARTEMIA_2 16.1
## 40 8 TEMP_ARTEMIA_2 14.2
## 41 9 TEMP_ARTEMIA_2 15.0
## 42 10 TEMP_ARTEMIA_2 14.8
## 43 11 TEMP_ARTEMIA_2 14.9
## 44 12 TEMP_ARTEMIA_2 15.3
## 45 13 TEMP_ARTEMIA_2 14.9
## 46 14 TEMP_ARTEMIA_2 14.8
## 47 15 TEMP_ARTEMIA_2 14.9
## 48 16 TEMP_ARTEMIA_2 15.6
## 49 17 TEMP_ARTEMIA_2 16.0
## 50 18 TEMP_ARTEMIA_2 16.9
## 51 19 TEMP_ARTEMIA_2 16.2
## 52 20 TEMP_ARTEMIA_2 17.3
## 53 21 TEMP_ARTEMIA_2 17.3
## 54 22 TEMP_ARTEMIA_2 17.0
## 55 23 TEMP_ARTEMIA_2 17.1
## 56 24 TEMP_ARTEMIA_2 17.1
## 57 25 TEMP_ARTEMIA_2 14.6
## 58 26 TEMP_ARTEMIA_2 15.3
## 59 27 TEMP_ARTEMIA_2 16.1
## 60 28 TEMP_ARTEMIA_2 16.6
## 61 29 TEMP_ARTEMIA_2 16.3
## 62 30 TEMP_ARTEMIA_2 16.6
## 63 31 TEMP_ARTEMIA_2 16.7
## 64 32 TEMP_ARTEMIA_2 17.0
## 65 1 TEMP_ARTEMIA_3 NA
## 66 2 TEMP_ARTEMIA_3 NA
## 67 3 TEMP_ARTEMIA_3 NA
## 68 4 TEMP_ARTEMIA_3 NA
## 69 5 TEMP_ARTEMIA_3 15.3
## 70 6 TEMP_ARTEMIA_3 15.1
## 71 7 TEMP_ARTEMIA_3 16.3
## 72 8 TEMP_ARTEMIA_3 15.2
## 73 9 TEMP_ARTEMIA_3 15.0
## 74 10 TEMP_ARTEMIA_3 15.8
## 75 11 TEMP_ARTEMIA_3 15.1
## 76 12 TEMP_ARTEMIA_3 15.4
## 77 13 TEMP_ARTEMIA_3 15.2
## 78 14 TEMP_ARTEMIA_3 15.3
## 79 15 TEMP_ARTEMIA_3 15.1
## 80 16 TEMP_ARTEMIA_3 15.8
## 81 17 TEMP_ARTEMIA_3 16.4
## 82 18 TEMP_ARTEMIA_3 17.7
## 83 19 TEMP_ARTEMIA_3 16.4
## 84 20 TEMP_ARTEMIA_3 17.5
## 85 21 TEMP_ARTEMIA_3 17.4
## 86 22 TEMP_ARTEMIA_3 17.1
## 87 23 TEMP_ARTEMIA_3 17.1
## 88 24 TEMP_ARTEMIA_3 17.2
## 89 25 TEMP_ARTEMIA_3 14.9
## 90 26 TEMP_ARTEMIA_3 15.9
## 91 27 TEMP_ARTEMIA_3 16.3
## 92 28 TEMP_ARTEMIA_3 16.9
## 93 29 TEMP_ARTEMIA_3 16.7
## 94 30 TEMP_ARTEMIA_3 16.8
## 95 31 TEMP_ARTEMIA_3 16.9
## 96 32 TEMP_ARTEMIA_3 17.0
## 97 1 TEMP_ZOOPLANKTON_1 13.7
## 98 2 TEMP_ZOOPLANKTON_1 13.8
## 99 3 TEMP_ZOOPLANKTON_1 14.7
## 100 4 TEMP_ZOOPLANKTON_1 13.9
## 101 5 TEMP_ZOOPLANKTON_1 14.9
## 102 6 TEMP_ZOOPLANKTON_1 14.5
## 103 7 TEMP_ZOOPLANKTON_1 16.5
## 104 8 TEMP_ZOOPLANKTON_1 15.3
## 105 9 TEMP_ZOOPLANKTON_1 14.7
## 106 10 TEMP_ZOOPLANKTON_1 14.8
## 107 11 TEMP_ZOOPLANKTON_1 14.8
## 108 12 TEMP_ZOOPLANKTON_1 15.1
## 109 13 TEMP_ZOOPLANKTON_1 15.0
## 110 14 TEMP_ZOOPLANKTON_1 14.9
## 111 15 TEMP_ZOOPLANKTON_1 15.0
## 112 16 TEMP_ZOOPLANKTON_1 15.6
## 113 17 TEMP_ZOOPLANKTON_1 16.0
## 114 18 TEMP_ZOOPLANKTON_1 16.9
## 115 19 TEMP_ZOOPLANKTON_1 16.3
## 116 20 TEMP_ZOOPLANKTON_1 17.2
## 117 21 TEMP_ZOOPLANKTON_1 17.3
## 118 22 TEMP_ZOOPLANKTON_1 17.1
## 119 23 TEMP_ZOOPLANKTON_1 17.2
## 120 24 TEMP_ZOOPLANKTON_1 17.2
## 121 25 TEMP_ZOOPLANKTON_1 14.9
## 122 26 TEMP_ZOOPLANKTON_1 16.3
## 123 27 TEMP_ZOOPLANKTON_1 16.7
## 124 28 TEMP_ZOOPLANKTON_1 17.3
## 125 29 TEMP_ZOOPLANKTON_1 16.5
## 126 30 TEMP_ZOOPLANKTON_1 16.9
## 127 31 TEMP_ZOOPLANKTON_1 17.0
## 128 32 TEMP_ZOOPLANKTON_1 17.2
## 129 1 TEMP_ZOOPLANKTON_2 13.8
## 130 2 TEMP_ZOOPLANKTON_2 13.8
## 131 3 TEMP_ZOOPLANKTON_2 14.7
## 132 4 TEMP_ZOOPLANKTON_2 13.9
## 133 5 TEMP_ZOOPLANKTON_2 14.9
## 134 6 TEMP_ZOOPLANKTON_2 15.3
## 135 7 TEMP_ZOOPLANKTON_2 17.0
## 136 8 TEMP_ZOOPLANKTON_2 14.9
## 137 9 TEMP_ZOOPLANKTON_2 15.1
## 138 10 TEMP_ZOOPLANKTON_2 15.0
## 139 11 TEMP_ZOOPLANKTON_2 15.1
## 140 12 TEMP_ZOOPLANKTON_2 15.3
## 141 13 TEMP_ZOOPLANKTON_2 15.0
## 142 14 TEMP_ZOOPLANKTON_2 15.2
## 143 15 TEMP_ZOOPLANKTON_2 15.2
## 144 16 TEMP_ZOOPLANKTON_2 15.9
## 145 17 TEMP_ZOOPLANKTON_2 16.3
## 146 18 TEMP_ZOOPLANKTON_2 17.3
## 147 19 TEMP_ZOOPLANKTON_2 16.4
## 148 20 TEMP_ZOOPLANKTON_2 17.6
## 149 21 TEMP_ZOOPLANKTON_2 17.6
## 150 22 TEMP_ZOOPLANKTON_2 17.3
## 151 23 TEMP_ZOOPLANKTON_2 17.4
## 152 24 TEMP_ZOOPLANKTON_2 17.2
## 153 25 TEMP_ZOOPLANKTON_2 15.1
## 154 26 TEMP_ZOOPLANKTON_2 16.0
## 155 27 TEMP_ZOOPLANKTON_2 16.4
## 156 28 TEMP_ZOOPLANKTON_2 17.1
## 157 29 TEMP_ZOOPLANKTON_2 16.8
## 158 30 TEMP_ZOOPLANKTON_2 16.8
## 159 31 TEMP_ZOOPLANKTON_2 16.9
## 160 32 TEMP_ZOOPLANKTON_2 17.0
## 161 1 TEMP_ZOOPLANKTON_3 NA
## 162 2 TEMP_ZOOPLANKTON_3 NA
## 163 3 TEMP_ZOOPLANKTON_3 NA
## 164 4 TEMP_ZOOPLANKTON_3 NA
## 165 5 TEMP_ZOOPLANKTON_3 15.3
## 166 6 TEMP_ZOOPLANKTON_3 15.0
## 167 7 TEMP_ZOOPLANKTON_3 16.2
## 168 8 TEMP_ZOOPLANKTON_3 15.0
## 169 9 TEMP_ZOOPLANKTON_3 15.2
## 170 10 TEMP_ZOOPLANKTON_3 15.3
## 171 11 TEMP_ZOOPLANKTON_3 15.3
## 172 12 TEMP_ZOOPLANKTON_3 15.5
## 173 13 TEMP_ZOOPLANKTON_3 15.3
## 174 14 TEMP_ZOOPLANKTON_3 15.4
## 175 15 TEMP_ZOOPLANKTON_3 15.2
## 176 16 TEMP_ZOOPLANKTON_3 15.9
## 177 17 TEMP_ZOOPLANKTON_3 16.4
## 178 18 TEMP_ZOOPLANKTON_3 17.1
## 179 19 TEMP_ZOOPLANKTON_3 16.5
## 180 20 TEMP_ZOOPLANKTON_3 17.6
## 181 21 TEMP_ZOOPLANKTON_3 17.4
## 182 22 TEMP_ZOOPLANKTON_3 17.3
## 183 23 TEMP_ZOOPLANKTON_3 17.3
## 184 24 TEMP_ZOOPLANKTON_3 17.3
## 185 25 TEMP_ZOOPLANKTON_3 14.9
## 186 26 TEMP_ZOOPLANKTON_3 14.9
## 187 27 TEMP_ZOOPLANKTON_3 16.3
## 188 28 TEMP_ZOOPLANKTON_3 16.9
## 189 29 TEMP_ZOOPLANKTON_3 16.6
## 190 30 TEMP_ZOOPLANKTON_3 16.7
## 191 31 TEMP_ZOOPLANKTON_3 16.8
## 192 32 TEMP_ZOOPLANKTON_3 17.0
Dissolved Oxygen
DO_raw<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/CH2_Data_Files_Analysis/TEMP_DO_ANALYSIS/CH_2_DO_ANALYSIS.csv", header=TRUE)
DO_long<-melt(DO_raw, id="Time")
oneway.test(value~variable, data=DO_long)
##
## One-way analysis of means (not assuming equal variances)
##
## data: value and variable
## F = 1.1225, num df = 5.000, denom df = 81.327, p-value = 0.3551
DO_FINAL<-ggplot(DO_raw, aes(Time)) + geom_line(aes(y=DO_ARTEMIA_1, colour = "Artemia 1", group=1)) + geom_line(aes(y = DO_ARTEMIA_2, colour = "Artemia 2", group = 1)) + geom_line(aes(y = DO_ARTEMIA_3, colour = "Artemia 3", group = 1)) + geom_line(aes(y = DO_ZOOPLANKTON_1, colour = "Zooplankton 1")) + geom_line(aes(y = DO_ZOOPLANKTON_2, colour = "Zooplankton 2")) + geom_line(aes(y=DO_ZOOPLANKTON_3, colour = "Zooplankton 3")) + xlab("Time(Days)") + labs(colour = 'Treatment', title = "Treatment Tank Dissolved Oxygen", subtitle = "Artemia vs. Zooplankton", y = bquote('Dissolved Oxygen'~(mg~L^-1))) + theme_classic()
DO_FINAL
## Warning: Removed 1 rows containing missing values (geom_path).
## Warning: Removed 4 rows containing missing values (geom_path).
## Warning: Removed 4 rows containing missing values (geom_path).
Combine all similar taxa by ‘Genus’
CH_2_ALL<-read.csv(file="~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_ALL_ASV_TABLE.csv",header=TRUE, check.names=FALSE, row.names = 1)
CH_2_ALL<-as.matrix(CH_2_ALL)
CH_2_ALL_otu<-otu_table(CH_2_ALL, taxa_are_rows = TRUE)
CH_2_ALL_metadata<-read.csv(file="~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_ALL_metadata.csv", header=TRUE, check.names=FALSE, row.names = 1)
CH_2_ALL_metadata<-sample_data(CH_2_ALL_metadata)
CH_2_taxa<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_taxa.csv", header = TRUE, check.names = FALSE, row.names = 1)
CH_2_taxa<-as.matrix(CH_2_taxa)
CH_2_taxa_Phylo<-tax_table(CH_2_taxa)
CH_2_ALL_Phylo<-phyloseq(CH_2_ALL_otu,CH_2_taxa_Phylo,CH_2_ALL_metadata)
CH_2_ALL_melted<-tax_glom(CH_2_ALL_Phylo, "Genus")
write.csv(otu_table(CH_2_ALL_melted), "CH_2_seqtab_ALL_COMBINED.csv")
A. Artemia (Pre-DF) Replicates vs. Replicates
A1A2_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A1A2_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
A1A2_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A1A2_Diet_metadata.csv", header = TRUE, check.names = FALSE)
A1A2_t_Diet<-as.data.frame(t(A1A2_Diet))
A1A2_t_Diet_rarefied<-as.data.frame(round(rrarefy(A1A2_t_Diet, 7000)))
A1A2_Diet_dist<-as.matrix(vegdist(A1A2_t_Diet_rarefied, "bray"))
A1A2_Diet_NMDS<-metaMDS(A1A2_Diet_dist)
## Run 0 stress 0.08557096
## Run 1 stress 0.1042383
## Run 2 stress 0.08561004
## ... Procrustes: rmse 0.004390038 max resid 0.01599103
## Run 3 stress 0.09677406
## Run 4 stress 0.09677416
## Run 5 stress 0.09166133
## Run 6 stress 0.08556971
## ... New best solution
## ... Procrustes: rmse 0.0005281524 max resid 0.001608506
## ... Similar to previous best
## Run 7 stress 0.1042379
## Run 8 stress 0.09164649
## Run 9 stress 0.1063912
## Run 10 stress 0.08560986
## ... Procrustes: rmse 0.003827475 max resid 0.01366786
## Run 11 stress 0.1020483
## Run 12 stress 0.1063598
## Run 13 stress 0.08560936
## ... Procrustes: rmse 0.004047737 max resid 0.01478296
## Run 14 stress 0.1063911
## Run 15 stress 0.09677406
## Run 16 stress 0.09677413
## Run 17 stress 0.08560942
## ... Procrustes: rmse 0.004056069 max resid 0.01474247
## Run 18 stress 0.1042381
## Run 19 stress 0.09164704
## Run 20 stress 0.1063913
## *** Solution reached
A1A2_Diet_MDS1<-A1A2_Diet_NMDS$points[,1]
A1A2_Diet_MDS2<-A1A2_Diet_NMDS$points[,2]
A1A2_Diet_NMDS$stress
## [1] 0.08556971
A1A2_Diet_NMDS<-data.frame(MDS1=A1A2_Diet_MDS1, MDS2 = A1A2_Diet_MDS2, Sample = A1A2_Diet_metadata$Sample, Treatment = A1A2_Diet_metadata$TREATMENT, Replicate = A1A2_Diet_metadata$Replicate, Week = A1A2_Diet_metadata$Week)
A1A2_Diet_NMDS$Replicate<-as.character(A1A2_Diet_NMDS$Replicate)
A1A2_Diet_NMDS$Week<-as.character(A1A2_Diet_NMDS$Week)
#Replicates
A1A2_Replicates<-ggplot(A1A2_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 1 + 2") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue", "green", "pink"))
A1A2_Replicates
pairwise.adonis(A1A2_Diet_dist, factors = A1A2_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 A1-1 vs A1-2 9.980878 0.5877716 0.019 0.19
## 2 A1-1 vs A1-3 3.830495 0.3536768 0.086 0.86
## 3 A1-1 vs A2-2 18.218739 0.6948747 0.012 0.12
## 4 A1-1 vs A2-3 25.871444 0.7638128 0.007 0.07
## 5 A1-2 vs A1-3 0.863925 0.1258646 0.429 1.00
## 6 A1-2 vs A2-2 7.970326 0.5324083 0.008 0.08
## 7 A1-2 vs A2-3 19.928938 0.7400566 0.010 0.10
## 8 A1-3 vs A2-2 3.914805 0.3586692 0.026 0.26
## 9 A1-3 vs A2-3 7.799353 0.5270063 0.010 0.10
## 10 A2-2 vs A2-3 5.256191 0.3965084 0.006 0.06
A1_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A1_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
A1_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A1_Diet_metadata.csv", header = TRUE, check.names = FALSE)
A1_t_Diet<-as.data.frame(t(A1_Diet))
A1_t_Diet_rarefied<-as.data.frame(round(rrarefy(A1_t_Diet, 7000)))
A1_Diet_dist<-as.matrix(vegdist(A1_t_Diet_rarefied, "bray"))
A1_Diet_NMDS<-metaMDS(A1_Diet_dist)
## Run 0 stress 0.05010283
## Run 1 stress 0.05010283
## ... Procrustes: rmse 1.69346e-05 max resid 3.943162e-05
## ... Similar to previous best
## Run 2 stress 0.05010283
## ... Procrustes: rmse 1.748043e-05 max resid 4.110189e-05
## ... Similar to previous best
## Run 3 stress 0.05010283
## ... New best solution
## ... Procrustes: rmse 4.769079e-06 max resid 1.117285e-05
## ... Similar to previous best
## Run 4 stress 0.05010283
## ... New best solution
## ... Procrustes: rmse 5.49503e-06 max resid 1.267139e-05
## ... Similar to previous best
## Run 5 stress 0.05010283
## ... Procrustes: rmse 1.845163e-06 max resid 4.36187e-06
## ... Similar to previous best
## Run 6 stress 0.05010283
## ... New best solution
## ... Procrustes: rmse 4.74425e-06 max resid 1.113718e-05
## ... Similar to previous best
## Run 7 stress 0.05010283
## ... Procrustes: rmse 6.970366e-06 max resid 1.649426e-05
## ... Similar to previous best
## Run 8 stress 0.05010283
## ... New best solution
## ... Procrustes: rmse 3.979132e-07 max resid 8.950742e-07
## ... Similar to previous best
## Run 9 stress 0.05010283
## ... Procrustes: rmse 2.882062e-06 max resid 6.401736e-06
## ... Similar to previous best
## Run 10 stress 0.1155611
## Run 11 stress 0.05010283
## ... Procrustes: rmse 1.223195e-05 max resid 2.805135e-05
## ... Similar to previous best
## Run 12 stress 0.1155609
## Run 13 stress 0.1383707
## Run 14 stress 0.1383698
## Run 15 stress 0.05010283
## ... Procrustes: rmse 1.755e-05 max resid 4.059108e-05
## ... Similar to previous best
## Run 16 stress 0.05010283
## ... Procrustes: rmse 5.796126e-06 max resid 1.361079e-05
## ... Similar to previous best
## Run 17 stress 0.05010283
## ... Procrustes: rmse 3.112744e-06 max resid 7.290305e-06
## ... Similar to previous best
## Run 18 stress 0.05010283
## ... Procrustes: rmse 2.071601e-05 max resid 4.823532e-05
## ... Similar to previous best
## Run 19 stress 0.05010283
## ... Procrustes: rmse 7.433365e-06 max resid 1.75928e-05
## ... Similar to previous best
## Run 20 stress 0.1383699
## *** Solution reached
A1_Diet_MDS1<-A1_Diet_NMDS$points[,1]
A1_Diet_MDS2<-A1_Diet_NMDS$points[,2]
A1_Diet_NMDS$stress
## [1] 0.05010283
A1_Diet_NMDS<-data.frame(MDS1=A1_Diet_MDS1, MDS2 = A1_Diet_MDS2, Sample = A1_Diet_metadata$Sample, Treatment = A1_Diet_metadata$TREATMENT, Replicate = A1_Diet_metadata$Replicate, Week = A1_Diet_metadata$Week)
A1_Diet_NMDS$Replicate<-as.character(A1_Diet_NMDS$Replicate)
A1_Diet_NMDS$Week<-as.character(A1_Diet_NMDS$Week)
#Replicates Week 1
A1_Replicates<-ggplot(A1_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 1") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue")) + geom_text(aes(label = "stress = 0.05"), x = -0.75, y = 0.50, size = 4, color = "black")
A1_Replicates
pairwise.adonis(A1_Diet_dist, factors = A1_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 A1-1 vs A1-2 7.095102 0.5033736 0.012 0.036 .
## 2 A1-1 vs A1-3 2.986094 0.2990252 0.083 0.249
## 3 A1-2 vs A1-3 1.379834 0.1869736 0.222 0.666
A2_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A2_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
A2_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A2_Diet_metadata.csv", header = TRUE, check.names = FALSE)
A2_t_Diet<-as.data.frame(t(A2_Diet))
A2_t_Diet_rarefied<-as.data.frame(round(rrarefy(A2_t_Diet, 7000)))
A2_Diet_dist<-as.matrix(vegdist(A2_t_Diet_rarefied, "bray"))
A2_Diet_NMDS<-metaMDS(A2_Diet_dist)
## Run 0 stress 0.03485709
## Run 1 stress 0.032857
## ... New best solution
## ... Procrustes: rmse 0.04599043 max resid 0.09569829
## Run 2 stress 0.03285714
## ... Procrustes: rmse 0.0009282264 max resid 0.00152428
## ... Similar to previous best
## Run 3 stress 0.1696336
## Run 4 stress 0.03285653
## ... New best solution
## ... Procrustes: rmse 0.0002501952 max resid 0.0003927184
## ... Similar to previous best
## Run 5 stress 0.03285642
## ... New best solution
## ... Procrustes: rmse 0.0001211562 max resid 0.0002031303
## ... Similar to previous best
## Run 6 stress 0.03485702
## Run 7 stress 0.03285711
## ... Procrustes: rmse 0.0005524719 max resid 0.0008944814
## ... Similar to previous best
## Run 8 stress 0.1830436
## Run 9 stress 0.03285672
## ... Procrustes: rmse 0.0002269362 max resid 0.0003809248
## ... Similar to previous best
## Run 10 stress 0.03285641
## ... New best solution
## ... Procrustes: rmse 3.032841e-05 max resid 5.000704e-05
## ... Similar to previous best
## Run 11 stress 0.03285656
## ... Procrustes: rmse 0.0002165429 max resid 0.0003570955
## ... Similar to previous best
## Run 12 stress 0.03285657
## ... Procrustes: rmse 0.0002327294 max resid 0.0003607436
## ... Similar to previous best
## Run 13 stress 0.03285788
## ... Procrustes: rmse 0.0006582749 max resid 0.001071723
## ... Similar to previous best
## Run 14 stress 0.03285673
## ... Procrustes: rmse 0.0002831205 max resid 0.0004641554
## ... Similar to previous best
## Run 15 stress 0.03485704
## Run 16 stress 0.03485712
## Run 17 stress 0.03285767
## ... Procrustes: rmse 0.0006192916 max resid 0.001036182
## ... Similar to previous best
## Run 18 stress 0.03285688
## ... Procrustes: rmse 0.0004361018 max resid 0.0007003915
## ... Similar to previous best
## Run 19 stress 0.03485719
## Run 20 stress 0.03485699
## *** Solution reached
A2_Diet_MDS1<-A2_Diet_NMDS$points[,1]
A2_Diet_MDS2<-A2_Diet_NMDS$points[,2]
A2_Diet_NMDS$stress
## [1] 0.03285641
A2_Diet_NMDS<-data.frame(MDS1=A2_Diet_MDS1, MDS2 = A2_Diet_MDS2, Sample = A2_Diet_metadata$Sample, Treatment = A2_Diet_metadata$TREATMENT, Replicate = A2_Diet_metadata$Replicate, Week = A2_Diet_metadata$Week)
A2_Diet_NMDS$Replicate<-as.character(A2_Diet_NMDS$Replicate)
A2_Diet_NMDS$Week<-as.character(A2_Diet_NMDS$Week)
#Replicates Week 2
A2_Replicates<-ggplot(A2_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 2") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "black")) + geom_text(aes(label = "stress = 0.04"), x = -0.2, y = 0.48, size = 4, color = "black")
A2_Replicates
pairwise.adonis(A2_Diet_dist, factors = A2_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 A2-2 vs A2-3 8.706752 0.5211517 0.009 0.009 *
#Week
A1A2_Week<-ggplot(A1A2_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Week)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 1 + 2") + theme(plot.title = element_text(size = 12, face = "bold"))+ scale_color_manual(values = c("black", "red"))
A1A2_Week
pairwise.adonis(A1A2_Diet_dist, factors = A1A2_Diet_metadata$Week)
## pairs F.Model R2 p.value p.adjusted sig
## 1 1 vs 2 12.6116 0.3752158 0.001 0.001 **
Artemia (DF) Replicates vs. Replicates
#No Contamination
A3A4_Diet_Only<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/ART_W3W4_DIET.csv", header = TRUE, row.names = 1, check.names = FALSE)
A3A4_Diet_Only_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/ART_W3W4_Diet_Metadata.csv", header = TRUE, check.names = FALSE)
A3A4_Diet_Only_metadata$Replicate<-as.character(A3A4_Diet_Only_metadata$Replicate)
A3A4_Diet_Only_metadata$Week<-as.character(A3A4_Diet_Only_metadata$Week)
A3A4_t_Diet_Only<-as.data.frame(t(A3A4_Diet_Only))
A3A4_t_Diet_Only_rarefied<-as.data.frame(round(rrarefy(A3A4_t_Diet_Only, 7000)))
A3A4_Diet_Only_dist<-as.matrix(vegdist(A3A4_t_Diet_Only_rarefied, "bray"))
A3A4_Diet_Only_NMDS<-metaMDS(A3A4_Diet_Only_dist)
## Run 0 stress 0.008668951
## Run 1 stress 0.001626143
## ... New best solution
## ... Procrustes: rmse 0.04457118 max resid 0.132825
## Run 2 stress 0.00221491
## Run 3 stress 0.008333398
## Run 4 stress 0.001294761
## ... New best solution
## ... Procrustes: rmse 0.001795023 max resid 0.007097662
## ... Similar to previous best
## Run 5 stress 0.000991826
## ... New best solution
## ... Procrustes: rmse 0.002494506 max resid 0.009324517
## ... Similar to previous best
## Run 6 stress 0.000687834
## ... New best solution
## ... Procrustes: rmse 0.002142313 max resid 0.0064966
## ... Similar to previous best
## Run 7 stress 0.0001231053
## ... New best solution
## ... Procrustes: rmse 0.003479974 max resid 0.01022416
## Run 8 stress 0.001190473
## Run 9 stress 9.824401e-05
## ... New best solution
## ... Procrustes: rmse 0.0002147622 max resid 0.0007185933
## ... Similar to previous best
## Run 10 stress 9.761317e-05
## ... New best solution
## ... Procrustes: rmse 0.000441646 max resid 0.00118983
## ... Similar to previous best
## Run 11 stress 0.000144641
## ... Procrustes: rmse 0.0004745049 max resid 0.001242198
## ... Similar to previous best
## Run 12 stress 9.966989e-05
## ... Procrustes: rmse 0.0001685484 max resid 0.0004894513
## ... Similar to previous best
## Run 13 stress 0.3699446
## Run 14 stress 0.0007189566
## Run 15 stress 0.006683524
## Run 16 stress 0.003232543
## Run 17 stress 0.001078589
## Run 18 stress 0.0002752788
## ... Procrustes: rmse 0.001176541 max resid 0.003567623
## ... Similar to previous best
## Run 19 stress 0.002318927
## Run 20 stress 0.002125749
## *** Solution reached
## Warning in metaMDS(A3A4_Diet_Only_dist): stress is (nearly) zero: you may
## have insufficient data
A3A4_Diet_Only_MDS1<-A3A4_Diet_Only_NMDS$points[,1]
A3A4_Diet_Only_MDS2<-A3A4_Diet_Only_NMDS$points[,2]
A3A4_Diet_Only_NMDS$stress
## [1] 9.761317e-05
A3A4_Diet_Only_NMDS<-data.frame(MDS1=A3A4_Diet_Only_MDS1, MDS2 = A3A4_Diet_Only_MDS2, Sample = A3A4_Diet_Only_metadata$Sample, Treatment = A3A4_Diet_Only_metadata$Treatment, Replicate = A3A4_Diet_Only_metadata$Replicate, Week = A3A4_Diet_Only_metadata$Week)
#Replicates
A3A4_Diet_Only_Replicates<-ggplot(A3A4_Diet_Only_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 3 + 4") + theme(plot.title = element_text(size = 12, face = "bold"))+ scale_color_manual(values = c("black", "red", "blue","green", "pink", "brown"))
A3A4_Diet_Only_Replicates
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(A3A4_Diet_Only_dist, factors = A3A4_Diet_Only_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 A3-1 vs A3-2 0.6637515 0.06868466 0.492 1.0
## 2 A3-1 vs A3-3 0.5458082 0.06386853 0.713 1.0
## 3 A3-1 vs A4-1 1.5287698 0.20305706 0.276 1.0
## 4 A3-2 vs A3-3 1.0832710 0.10743250 0.291 1.0
## 5 A3-2 vs A4-1 2.9425477 0.29595510 0.100 0.6
## 6 A3-3 vs A4-1 1.3531802 0.18402652 0.428 1.0
#Contamination
A3A4_Diet_Only_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/ART_W3W4_DIET_CONTAM.csv", header = TRUE, row.names = 1, check.names = FALSE)
A3A4_Diet_Only_metadata_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/ARTW3W4_CONTAM_Metadata.csv", header = TRUE, check.names = FALSE)
A3A4_Diet_Only_metadata_C$Replicate<-as.character(A3A4_Diet_Only_metadata_C$Replicate)
A3A4_Diet_Only_metadata_C$Week<-as.character(A3A4_Diet_Only_metadata_C$Week)
A3A4_t_Diet_Only_C<-as.data.frame(t(A3A4_Diet_Only_C))
A3A4_t_Diet_Only_rarefied_C<-as.data.frame(round(rrarefy(A3A4_t_Diet_Only_C, 7000)))
A3A4_Diet_Only_dist_C<-as.matrix(vegdist(A3A4_t_Diet_Only_rarefied_C, "bray"))
A3A4_Diet_Only_NMDS_C<-metaMDS(A3A4_Diet_Only_dist_C)
## Run 0 stress 0.02750446
## Run 1 stress 0.02809729
## Run 2 stress 0.02752788
## ... Procrustes: rmse 0.002172804 max resid 0.009342459
## ... Similar to previous best
## Run 3 stress 0.02752744
## ... Procrustes: rmse 0.002037417 max resid 0.008883414
## ... Similar to previous best
## Run 4 stress 0.0275276
## ... Procrustes: rmse 0.002130289 max resid 0.009165323
## ... Similar to previous best
## Run 5 stress 0.02831557
## Run 6 stress 0.02826912
## Run 7 stress 0.08372863
## Run 8 stress 0.02831567
## Run 9 stress 0.02750445
## ... New best solution
## ... Procrustes: rmse 4.553807e-05 max resid 0.000119395
## ... Similar to previous best
## Run 10 stress 0.02826911
## Run 11 stress 0.02831558
## Run 12 stress 0.121592
## Run 13 stress 0.02752796
## ... Procrustes: rmse 0.002185005 max resid 0.009411415
## ... Similar to previous best
## Run 14 stress 0.02809729
## Run 15 stress 0.1200203
## Run 16 stress 0.1206261
## Run 17 stress 0.02831562
## Run 18 stress 0.02809733
## Run 19 stress 0.02826914
## Run 20 stress 0.02750448
## ... Procrustes: rmse 4.310116e-05 max resid 0.0001125635
## ... Similar to previous best
## *** Solution reached
A3A4_Diet_Only_MDS1_C<-A3A4_Diet_Only_NMDS_C$points[,1]
A3A4_Diet_Only_MDS2_C<-A3A4_Diet_Only_NMDS_C$points[,2]
A3A4_Diet_Only_NMDS_C$stress
## [1] 0.02750445
A3A4_Diet_Only_NMDS_C<-data.frame(MDS1=A3A4_Diet_Only_MDS1_C, MDS2 = A3A4_Diet_Only_MDS2_C, Sample = A3A4_Diet_Only_metadata_C$Sample, Treatment = A3A4_Diet_Only_metadata_C$Treatment, Replicate = A3A4_Diet_Only_metadata_C$Replicate, Week = A3A4_Diet_Only_metadata_C$Week)
#Replicates
A3A4_Diet_Only_Replicates_C<-ggplot(A3A4_Diet_Only_NMDS_C, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 3 + 4(Contamination)") + theme(plot.title = element_text(size = 12, face = "bold"))+ scale_color_manual(values = c("black", "red", "blue","green", "pink", "brown"))
A3A4_Diet_Only_Replicates_C
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
A3A4_Diet_Only_Week_C<-ggplot(A3A4_Diet_Only_NMDS_C, aes(x=MDS1, y = MDS2, col = Week)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 3 + 4(Contamination)") + theme(plot.title = element_text(size = 12, face = "bold"))+ scale_color_manual(values = c("black", "red", "blue","green", "pink", "brown"))
A3A4_Diet_Only_Week_C
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
pairwise.adonis(A3A4_Diet_Only_dist_C, factors = A3A4_Diet_Only_metadata_C$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 1 vs 2 4.918095 0.23511199 0.044 0.132
## 2 1 vs 3 7.912203 0.34532703 0.016 0.048 .
## 3 2 vs 3 0.414766 0.02381692 0.544 1.000
#W3
A3_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A3_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
A3_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A3_Diet_metadata.csv", header = TRUE, check.names = FALSE)
A3_t_Diet<-as.data.frame(t(A3_Diet))
A3_t_Diet_rarefied<-as.data.frame(round(rrarefy(A3_t_Diet, 7000)))
A3_Diet_dist<-as.matrix(vegdist(A3_t_Diet_rarefied, "bray"))
A3_Diet_NMDS<-metaMDS(A3_Diet_dist)
## Run 0 stress 0.02495775
## Run 1 stress 0.02495687
## ... New best solution
## ... Procrustes: rmse 0.0004615764 max resid 0.001098644
## ... Similar to previous best
## Run 2 stress 0.03768507
## Run 3 stress 0.02495816
## ... Procrustes: rmse 0.0005866344 max resid 0.001789194
## ... Similar to previous best
## Run 4 stress 0.0249581
## ... Procrustes: rmse 0.0005306751 max resid 0.001313236
## ... Similar to previous best
## Run 5 stress 0.03768224
## Run 6 stress 0.02495685
## ... New best solution
## ... Procrustes: rmse 0.0002157488 max resid 0.0006851276
## ... Similar to previous best
## Run 7 stress 0.02495678
## ... New best solution
## ... Procrustes: rmse 0.0001851678 max resid 0.0005397634
## ... Similar to previous best
## Run 8 stress 0.03768171
## Run 9 stress 0.02495694
## ... Procrustes: rmse 0.0002290149 max resid 0.0005348532
## ... Similar to previous best
## Run 10 stress 0.03768234
## Run 11 stress 0.03768186
## Run 12 stress 0.03768339
## Run 13 stress 0.02495773
## ... Procrustes: rmse 0.0004872675 max resid 0.001400891
## ... Similar to previous best
## Run 14 stress 0.02495749
## ... Procrustes: rmse 0.0004259824 max resid 0.001228653
## ... Similar to previous best
## Run 15 stress 0.02495884
## ... Procrustes: rmse 0.0007000748 max resid 0.0019937
## ... Similar to previous best
## Run 16 stress 0.02495788
## ... Procrustes: rmse 0.0004861839 max resid 0.001333249
## ... Similar to previous best
## Run 17 stress 0.02495785
## ... Procrustes: rmse 0.0004697155 max resid 0.001295018
## ... Similar to previous best
## Run 18 stress 0.02495815
## ... Procrustes: rmse 0.0005705867 max resid 0.001577118
## ... Similar to previous best
## Run 19 stress 0.02495754
## ... Procrustes: rmse 0.0004417663 max resid 0.001273212
## ... Similar to previous best
## Run 20 stress 0.03768486
## *** Solution reached
A3_Diet_MDS1<-A3_Diet_NMDS$points[,1]
A3_Diet_MDS2<-A3_Diet_NMDS$points[,2]
A3_Diet_NMDS$stress
## [1] 0.02495678
A3_Diet_NMDS<-data.frame(MDS1=A3_Diet_MDS1, MDS2 = A3_Diet_MDS2, Sample = A3_Diet_metadata$Sample, Treatment = A3_Diet_metadata$Treatment, Replicate = A3_Diet_metadata$Replicate, Week = A3_Diet_metadata$Week)
A3_Diet_NMDS$Replicate<-as.character(A3_Diet_NMDS$Replicate)
A3_Diet_NMDS$Week<-as.character(A3_Diet_NMDS$Week)
#Replicates Week 3
A3_Replicates<-ggplot(A3_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 3") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue"))
A3_Replicates
pairwise.adonis(A3_Diet_dist, factors = A3_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 A3-1 vs A3-2 0.8039777 0.08200526 0.401 1.00
## 2 A3-1 vs A3-3 0.6360751 0.07365326 0.660 1.00
## 3 A3-2 vs A3-3 1.2048644 0.11806766 0.290 0.87
#W4
A4_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A4_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
A4_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Artemia_vs_Cont/A4_Diet_metadata.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote =
## quote, : incomplete final line found by readTableHeader on '~/Dropbox/
## bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/
## Artemia_vs_Cont/A4_Diet_metadata.csv'
A4_t_Diet<-as.data.frame(t(A4_Diet))
A4_t_Diet_rarefied<-as.data.frame(round(rrarefy(A4_t_Diet, 7000)))
A4_Diet_dist<-as.matrix(vegdist(A4_t_Diet_rarefied, "bray"))
A4_Diet_NMDS<-metaMDS(A4_Diet_dist)
## Run 0 stress 0
## Run 1 stress 0
## ... Procrustes: rmse 0.3876023 max resid 0.3924751
## Run 2 stress 0
## ... Procrustes: rmse 0.0607968 max resid 0.07430169
## Run 3 stress 0
## ... Procrustes: rmse 0.2891994 max resid 0.347204
## Run 4 stress 0
## ... Procrustes: rmse 0.3371385 max resid 0.3794043
## Run 5 stress 0
## ... Procrustes: rmse 0.2891332 max resid 0.3611232
## Run 6 stress 0
## ... Procrustes: rmse 0.1209091 max resid 0.1490477
## Run 7 stress 0
## ... Procrustes: rmse 0.01722349 max resid 0.02164748
## Run 8 stress 0
## ... Procrustes: rmse 0.2207627 max resid 0.2686518
## Run 9 stress 0
## ... Procrustes: rmse 0.2971317 max resid 0.3718899
## Run 10 stress 0
## ... Procrustes: rmse 0.02314649 max resid 0.02861252
## Run 11 stress 0
## ... Procrustes: rmse 0.2195106 max resid 0.2997338
## Run 12 stress 0
## ... Procrustes: rmse 0.3584714 max resid 0.3987596
## Run 13 stress 0
## ... Procrustes: rmse 0.2089468 max resid 0.2858727
## Run 14 stress 0
## ... Procrustes: rmse 0.2656553 max resid 0.3749174
## Run 15 stress 0
## ... Procrustes: rmse 0.3440014 max resid 0.3782372
## Run 16 stress 0
## ... Procrustes: rmse 0.3163712 max resid 0.3654615
## Run 17 stress 0
## ... Procrustes: rmse 0.2679118 max resid 0.3738803
## Run 18 stress 0
## ... Procrustes: rmse 0.3576806 max resid 0.3777141
## Run 19 stress 0
## ... Procrustes: rmse 0.2917966 max resid 0.3464946
## Run 20 stress 0
## ... Procrustes: rmse 0.03904016 max resid 0.05008416
## *** No convergence -- monoMDS stopping criteria:
## 20: stress < smin
## Warning in metaMDS(A4_Diet_dist): stress is (nearly) zero: you may have
## insufficient data
A4_Diet_MDS1<-A4_Diet_NMDS$points[,1]
A4_Diet_MDS2<-A4_Diet_NMDS$points[,2]
A4_Diet_NMDS$stress
## [1] 0
A4_Diet_NMDS<-data.frame(MDS1=A4_Diet_MDS1, MDS2 = A4_Diet_MDS2, Sample = A4_Diet_metadata$Sample, Treatment = A4_Diet_metadata$Treatment, Replicate = A4_Diet_metadata$Replicate, Week = A4_Diet_metadata$Week)
A4_Diet_NMDS$Week<-as.character(A4_Diet_NMDS$Week)
#NO REPLICATES FOR WEEK 4! (Contamination)
#Week
A3A4_Diet_Only_Week<-ggplot(A3A4_Diet_Only_NMDS, aes(x=MDS1, y = MDS2, col = Week)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia Week 3 + 4") + theme(plot.title = element_text(size = 12, face = "bold"))+ scale_color_manual(values = c("black", "red"))
A3A4_Diet_Only_Week
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(A3A4_Diet_Only_dist, factors = A3A4_Diet_Only_metadata$Week)
## pairs F.Model R2 p.value p.adjusted sig
## 1 3 vs 4 1.527191 0.08242973 0.156 0.156
Final Artemia (All 6 together)
A_FINAL<-ggarrange(A1A2_Replicates, A1A2_Week, A3A4_Diet_Only_Replicates, A3A4_Diet_Only_Week, labels = c("A", "B", "C", "D", "E", "F"), common.legend = FALSE, legend = "right")
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
A_FINAL
A_FINAL_C<-ggarrange(A1A2_Replicates, A1A2_Week, A3A4_Diet_Only_Replicates_C, A3A4_Diet_Only_Week_C, labels = c("A", "B", "C", "D", "E", "F"), common.legend = FALSE, legend = "right")
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
Zooplankton (Pre-DF) Replicates vs. Replicates
Z1Z2_Diet_Only<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z1Z2_Diet.csv", header = TRUE, row.names = 1, check.names = FALSE)
Z1Z2_Diet_Only_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z1Z2_Diet_metadata.csv", header = TRUE, check.names = FALSE)
Z1Z2_Diet_Only_metadata$Replicate<-as.character(Z1Z2_Diet_Only_metadata$Replicate)
Z1Z2_Diet_Only_metadata$Week<-as.character(Z1Z2_Diet_Only_metadata$Week)
Z1Z2_t_Diet_Only<-as.data.frame(t(Z1Z2_Diet_Only))
Z1Z2_t_Diet_Only_rarefied<-as.data.frame(round(rrarefy(Z1Z2_t_Diet_Only, 7000)))
Z1Z2_Diet_Only_dist<-as.matrix(vegdist(Z1Z2_t_Diet_Only_rarefied, "bray"))
Z1Z2_Diet_Only_NMDS<-metaMDS(Z1Z2_Diet_Only_dist)
## Run 0 stress 0.07195965
## Run 1 stress 0.07818844
## Run 2 stress 0.0759368
## Run 3 stress 0.07748218
## Run 4 stress 0.07593692
## Run 5 stress 0.07419097
## Run 6 stress 0.07698473
## Run 7 stress 0.07989184
## Run 8 stress 0.06880269
## ... New best solution
## ... Procrustes: rmse 0.04398573 max resid 0.1816889
## Run 9 stress 0.069172
## ... Procrustes: rmse 0.06716476 max resid 0.2162107
## Run 10 stress 0.076748
## Run 11 stress 0.07155384
## Run 12 stress 0.07805142
## Run 13 stress 0.07805116
## Run 14 stress 0.07604982
## Run 15 stress 0.06472015
## ... New best solution
## ... Procrustes: rmse 0.01808939 max resid 0.07480852
## Run 16 stress 0.07674225
## Run 17 stress 0.07238898
## Run 18 stress 0.07619186
## Run 19 stress 0.07539831
## Run 20 stress 0.0704107
## *** No convergence -- monoMDS stopping criteria:
## 20: stress ratio > sratmax
Z1Z2_Diet_Only_MDS1<-Z1Z2_Diet_Only_NMDS$points[,1]
Z1Z2_Diet_Only_MDS2<-Z1Z2_Diet_Only_NMDS$points[,2]
Z1Z2_Diet_Only_NMDS$stress
## [1] 0.06472015
Z1Z2_Diet_Only_NMDS<-data.frame(MDS1=Z1Z2_Diet_Only_MDS1, MDS2 = Z1Z2_Diet_Only_MDS2, Sample = Z1Z2_Diet_Only_metadata$Sample, Treatment = Z1Z2_Diet_Only_metadata$Treatment, Replicate = Z1Z2_Diet_Only_metadata$Replicate, Week = Z1Z2_Diet_Only_metadata$Week)
#Replicates
Z1Z2_Diet_Only_Replicates<-ggplot(Z1Z2_Diet_Only_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Zooplankton Week 1 + 2") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_colour_manual(values = c("black", "red", "blue","green", "pink","brown"))
Z1Z2_Diet_Only_Replicates
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(Z1Z2_Diet_Only_dist, factors = Z1Z2_Diet_Only_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 Z1-1 vs Z1-2 10.1684465 0.55967617 0.007 0.105
## 2 Z1-1 vs Z1-3 0.6186839 0.09347536 0.618 1.000
## 3 Z1-1 vs Z2-1 67.3728029 0.89386092 0.005 0.075
## 4 Z1-1 vs Z2-2 23.1491764 0.74317138 0.011 0.165
## 5 Z1-1 vs Z2-3 8.6405767 0.51924743 0.019 0.285
## 6 Z1-2 vs Z1-3 6.6096113 0.52417249 0.049 0.735
## 7 Z1-2 vs Z2-1 63.4121342 0.88797422 0.014 0.210
## 8 Z1-2 vs Z2-2 21.0860113 0.72495369 0.013 0.195
## 9 Z1-2 vs Z2-3 5.8022868 0.42038590 0.038 0.570
## 10 Z1-3 vs Z2-1 82.3859993 0.93211595 0.023 0.345
## 11 Z1-3 vs Z2-2 18.5725434 0.75582503 0.018 0.270
## 12 Z1-3 vs Z2-3 6.0960419 0.50396997 0.095 1.000
## 13 Z2-1 vs Z2-2 0.8394396 0.09496526 0.379 1.000
## 14 Z2-1 vs Z2-3 2.9373553 0.26856175 0.068 1.000
## 15 Z2-2 vs Z2-3 1.2387892 0.13408566 0.356 1.000
Z1_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z1_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
Z1_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z1_Diet_metadata.csv", header = TRUE, check.names = FALSE)
Z1_t_Diet<-as.data.frame(t(Z1_Diet))
Z1_t_Diet_rarefied<-as.data.frame(round(rrarefy(Z1_t_Diet, 7000)))
Z1_Diet_dist<-as.matrix(vegdist(Z1_t_Diet_rarefied, "bray"))
Z1_Diet_NMDS<-metaMDS(Z1_Diet_dist)
## Run 0 stress 8.460044e-05
## Run 1 stress 9.313518e-05
## ... Procrustes: rmse 0.0001208081 max resid 0.0002350784
## ... Similar to previous best
## Run 2 stress 8.353338e-05
## ... New best solution
## ... Procrustes: rmse 0.0001785088 max resid 0.0002743119
## ... Similar to previous best
## Run 3 stress 9.92828e-05
## ... Procrustes: rmse 0.0002080606 max resid 0.0003243353
## ... Similar to previous best
## Run 4 stress 9.685623e-05
## ... Procrustes: rmse 0.0001768905 max resid 0.0002752232
## ... Similar to previous best
## Run 5 stress 8.991343e-05
## ... Procrustes: rmse 0.000125932 max resid 0.0002818913
## ... Similar to previous best
## Run 6 stress 9.537573e-05
## ... Procrustes: rmse 0.0001268914 max resid 0.0002547986
## ... Similar to previous best
## Run 7 stress 7.447895e-05
## ... New best solution
## ... Procrustes: rmse 8.169633e-05 max resid 0.0001295278
## ... Similar to previous best
## Run 8 stress 7.22385e-05
## ... New best solution
## ... Procrustes: rmse 7.727545e-05 max resid 0.0001425784
## ... Similar to previous best
## Run 9 stress 0.3432102
## Run 10 stress 9.793382e-05
## ... Procrustes: rmse 0.0001063945 max resid 0.0002322053
## ... Similar to previous best
## Run 11 stress 9.960485e-05
## ... Procrustes: rmse 8.143685e-05 max resid 0.0001301655
## ... Similar to previous best
## Run 12 stress 8.824633e-05
## ... Procrustes: rmse 9.168365e-05 max resid 0.0002059236
## ... Similar to previous best
## Run 13 stress 9.159249e-05
## ... Procrustes: rmse 0.0001409104 max resid 0.0002596411
## ... Similar to previous best
## Run 14 stress 9.191406e-05
## ... Procrustes: rmse 0.0001137074 max resid 0.0002018159
## ... Similar to previous best
## Run 15 stress 9.307277e-05
## ... Procrustes: rmse 0.0001876419 max resid 0.0003065668
## ... Similar to previous best
## Run 16 stress 9.129147e-05
## ... Procrustes: rmse 0.0001096471 max resid 0.0001618812
## ... Similar to previous best
## Run 17 stress 6.160457e-05
## ... New best solution
## ... Procrustes: rmse 5.333561e-05 max resid 7.896001e-05
## ... Similar to previous best
## Run 18 stress 9.801004e-05
## ... Procrustes: rmse 0.0001971739 max resid 0.00037458
## ... Similar to previous best
## Run 19 stress 9.228245e-05
## ... Procrustes: rmse 9.078555e-05 max resid 0.0001305923
## ... Similar to previous best
## Run 20 stress 9.676495e-05
## ... Procrustes: rmse 0.0001729853 max resid 0.0003322483
## ... Similar to previous best
## *** Solution reached
## Warning in metaMDS(Z1_Diet_dist): stress is (nearly) zero: you may have
## insufficient data
Z1_Diet_MDS1<-Z1_Diet_NMDS$points[,1]
Z1_Diet_MDS2<-Z1_Diet_NMDS$points[,2]
Z1_Diet_NMDS$stress
## [1] 6.160457e-05
Z1_Diet_NMDS<-data.frame(MDS1=Z1_Diet_MDS1, MDS2 = Z1_Diet_MDS2, Sample = Z1_Diet_metadata$Sample, Treatment = Z1_Diet_metadata$Treatment, Replicate = Z1_Diet_metadata$Replicate, Week = Z1_Diet_metadata$Week)
Z1_Diet_NMDS$Replicate<-as.character(Z1_Diet_NMDS$Replicate)
Z1_Diet_NMDS$Week<-as.character(Z1_Diet_NMDS$Week)
#Replicates Week 1
Z1_Replicates<-ggplot(Z1_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Zooplankton Week 1") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue"))
Z1_Replicates
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(Z1_Diet_dist, factors = Z1_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 Z1-1 vs Z1-2 2.7638983 0.25677484 0.036 0.108
## 2 Z1-1 vs Z1-3 0.3608594 0.05673124 0.805 1.000
## 3 Z1-2 vs Z1-3 2.9874953 0.33240577 0.071 0.213
Z2_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z2_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
Z2_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z2_Diet_metadata.csv", header = TRUE, check.names = FALSE)
Z2_t_Diet<-as.data.frame(t(Z2_Diet))
Z2_t_Diet_rarefied<-as.data.frame(round(rrarefy(Z2_t_Diet, 7000)))
Z2_Diet_dist<-as.matrix(vegdist(Z2_t_Diet_rarefied, "bray"))
Z2_Diet_NMDS<-metaMDS(Z2_Diet_dist)
## Run 0 stress 0.06057745
## Run 1 stress 0.06057711
## ... New best solution
## ... Procrustes: rmse 0.0002297684 max resid 0.000614745
## ... Similar to previous best
## Run 2 stress 0.09381229
## Run 3 stress 0.09381379
## Run 4 stress 0.09381188
## Run 5 stress 0.0605773
## ... Procrustes: rmse 0.0001854633 max resid 0.0004922208
## ... Similar to previous best
## Run 6 stress 0.06057768
## ... Procrustes: rmse 0.0004807641 max resid 0.001075342
## ... Similar to previous best
## Run 7 stress 0.06057758
## ... Procrustes: rmse 0.0004645537 max resid 0.001061286
## ... Similar to previous best
## Run 8 stress 0.1326081
## Run 9 stress 0.06057741
## ... Procrustes: rmse 0.000403057 max resid 0.0008757339
## ... Similar to previous best
## Run 10 stress 0.09381238
## Run 11 stress 0.09381245
## Run 12 stress 0.1326082
## Run 13 stress 0.06057781
## ... Procrustes: rmse 0.000571646 max resid 0.001328883
## ... Similar to previous best
## Run 14 stress 0.1514081
## Run 15 stress 0.06057703
## ... New best solution
## ... Procrustes: rmse 9.77295e-05 max resid 0.0002433527
## ... Similar to previous best
## Run 16 stress 0.1514082
## Run 17 stress 0.06057712
## ... Procrustes: rmse 8.566429e-05 max resid 0.0002152844
## ... Similar to previous best
## Run 18 stress 0.06057724
## ... Procrustes: rmse 0.0003136512 max resid 0.0007752078
## ... Similar to previous best
## Run 19 stress 0.06057759
## ... Procrustes: rmse 0.0004724881 max resid 0.001172523
## ... Similar to previous best
## Run 20 stress 0.06057717
## ... Procrustes: rmse 0.0002914294 max resid 0.0007232581
## ... Similar to previous best
## *** Solution reached
Z2_Diet_MDS1<-Z2_Diet_NMDS$points[,1]
Z2_Diet_MDS2<-Z2_Diet_NMDS$points[,2]
Z2_Diet_NMDS$stress
## [1] 0.06057703
Z2_Diet_NMDS<-data.frame(MDS1=Z2_Diet_MDS1, MDS2 = Z2_Diet_MDS2, Sample = Z2_Diet_metadata$Sample, Treatment = Z2_Diet_metadata$Treatment, Replicate = Z2_Diet_metadata$Replicate, Week = Z2_Diet_metadata$Week)
Z2_Diet_NMDS$Replicate<-as.character(Z2_Diet_NMDS$Replicate)
Z2_Diet_NMDS$Week<-as.character(Z2_Diet_NMDS$Week)
#Replicates Week 2
Z2_Replicates<-ggplot(Z2_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Zooplankton Week 2") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue")) + geom_text(aes(label = "stress = 0.06"), x = -0.6, y = 0.48, size = 4, color = "black")
Z2_Replicates
pairwise.adonis(Z2_Diet_dist, factors = Z2_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 Z2-1 vs Z2-2 1.584337 0.16530477 0.149 0.447
## 2 Z2-1 vs Z2-3 3.881925 0.32670841 0.006 0.018 .
## 3 Z2-2 vs Z2-3 0.642246 0.07431471 0.601 1.000
#Week
Z1Z2_Diet_Only_Week<-ggplot(Z1Z2_Diet_Only_NMDS, aes(x=MDS1, y = MDS2, col = Week)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Zooplankton Week 1 + 2") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_colour_manual(values = c("black", "red"))
Z1Z2_Diet_Only_Week
pairwise.adonis(Z1Z2_Diet_Only_dist, factors = Z1Z2_Diet_Only_metadata$Week)
## pairs F.Model R2 p.value p.adjusted sig
## 1 1 vs 2 42.04552 0.6179029 0.001 0.001 **
Zooplankton (DF) Replicates vs. Replicates
Z3Z4_Diet_Only<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z3Z4_Diet.csv", header = TRUE, row.names = 1, check.names = FALSE)
Z3Z4_Diet_Only_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z3Z4_Diet_metadata.csv", header = TRUE, check.names = FALSE)
Z3Z4_Diet_Only_metadata$Replicate<-as.character(Z3Z4_Diet_Only_metadata$Replicate)
Z3Z4_Diet_Only_metadata$Week<-as.character(Z3Z4_Diet_Only_metadata$Week)
Z3Z4_t_Diet_Only<-as.data.frame(t(Z3Z4_Diet_Only))
Z3Z4_t_Diet_Only_rarefied<-as.data.frame(round(rrarefy(Z3Z4_t_Diet_Only, 7000)))
Z3Z4_Diet_Only_dist<-as.matrix(vegdist(Z3Z4_t_Diet_Only_rarefied, "bray"))
Z3Z4_Diet_Only_NMDS<-metaMDS(Z3Z4_Diet_Only_dist)
## Run 0 stress 0.0001078007
## Run 1 stress 0.0006271787
## Run 2 stress 0.0006345342
## Run 3 stress 0.001746521
## Run 4 stress 9.964137e-05
## ... New best solution
## ... Procrustes: rmse 0.005281997 max resid 0.02841786
## Run 5 stress 0.001947153
## Run 6 stress 0.001452756
## Run 7 stress 0.0006307673
## Run 8 stress 9.163319e-05
## ... New best solution
## ... Procrustes: rmse 0.110466 max resid 0.4773408
## Run 9 stress 0.001686816
## Run 10 stress 0.0009391971
## Run 11 stress 0.002233616
## Run 12 stress 0.0002358559
## ... Procrustes: rmse 0.0345721 max resid 0.1666126
## Run 13 stress 0.001004532
## Run 14 stress 0.003595731
## Run 15 stress 0.001290366
## Run 16 stress 9.416996e-05
## ... Procrustes: rmse 0.0665593 max resid 0.3439489
## Run 17 stress 0.000627186
## Run 18 stress 9.183399e-05
## ... Procrustes: rmse 0.09865516 max resid 0.5290808
## Run 19 stress 0.0004250094
## ... Procrustes: rmse 0.0135042 max resid 0.06067575
## Run 20 stress 0.0007605477
## *** No convergence -- monoMDS stopping criteria:
## 16: no. of iterations >= maxit
## 4: stress < smin
## Warning in metaMDS(Z3Z4_Diet_Only_dist): stress is (nearly) zero: you may
## have insufficient data
Z3Z4_Diet_Only_MDS1<-Z3Z4_Diet_Only_NMDS$points[,1]
Z3Z4_Diet_Only_MDS2<-Z3Z4_Diet_Only_NMDS$points[,2]
Z3Z4_Diet_Only_NMDS$stress
## [1] 9.163319e-05
Z3Z4_Diet_Only_NMDS<-data.frame(MDS1=Z3Z4_Diet_Only_MDS1, MDS2 = Z3Z4_Diet_Only_MDS2, Sample = Z3Z4_Diet_Only_metadata$Sample, Treatment = Z3Z4_Diet_Only_metadata$Treatment, Replicate = Z3Z4_Diet_Only_metadata$Replicate, Week = Z3Z4_Diet_Only_metadata$Week)
#Replicates
Z3Z4_Diet_Only_Replicates<-ggplot(Z3Z4_Diet_Only_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic() + scale_colour_manual(values = c("black", "red", "blue","green", "pink","brown"))+ labs(title = "Zooplankton Week 3 + 4") + theme(plot.title = element_text(size = 12, face = "bold"))
Z3Z4_Diet_Only_Replicates
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(Z3Z4_Diet_Only_dist, factors = Z3Z4_Diet_Only_metadata$Replicate)
## Set of permutations < 'minperm'. Generating entire set.
## Set of permutations < 'minperm'. Generating entire set.
## pairs F.Model R2 p.value p.adjusted sig
## 1 Z3-1 vs Z3-2 1.2124013 0.09927624 0.030 0.450
## 2 Z3-1 vs Z3-3 3.1370422 0.22190230 0.063 0.945
## 3 Z3-1 vs Z4-1 0.8714914 0.08828366 0.381 1.000
## 4 Z3-1 vs Z4-2 8.2804575 0.47918046 0.007 0.105
## 5 Z3-1 vs Z4-3 2.7263475 0.25417296 0.123 1.000
## 6 Z3-2 vs Z3-3 0.9752096 0.08885567 0.927 1.000
## 7 Z3-2 vs Z4-1 0.6597323 0.07618391 0.418 1.000
## 8 Z3-2 vs Z4-2 0.6215443 0.07209199 0.774 1.000
## 9 Z3-2 vs Z4-3 0.4150527 0.05597434 0.910 1.000
## 10 Z3-3 vs Z4-1 3.2097946 0.28633840 0.076 1.000
## 11 Z3-3 vs Z4-2 2.9679562 0.27060248 0.121 1.000
## 12 Z3-3 vs Z4-3 1.5353927 0.17988542 0.275 1.000
## 13 Z4-1 vs Z4-2 4.8761006 0.44833169 0.027 0.405
## 14 Z4-1 vs Z4-3 1.3406877 0.21144200 0.331 1.000
## 15 Z4-2 vs Z4-3 0.2233408 0.04275822 0.888 1.000
Z3_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z3_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
Z3_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z3_Diet_metadata.csv", header = TRUE, check.names = FALSE)
Z3_t_Diet<-as.data.frame(t(Z3_Diet))
Z3_t_Diet_rarefied<-as.data.frame(round(rrarefy(Z3_t_Diet, 7000)))
Z3_Diet_dist<-as.matrix(vegdist(Z3_t_Diet_rarefied, "bray"))
Z3_Diet_NMDS<-metaMDS(Z3_Diet_dist)
## Run 0 stress 9.961133e-05
## Run 1 stress 0.0002634348
## ... Procrustes: rmse 0.0006969538 max resid 0.001756076
## ... Similar to previous best
## Run 2 stress 0.0004208754
## ... Procrustes: rmse 0.001247496 max resid 0.003311165
## ... Similar to previous best
## Run 3 stress 9.892716e-05
## ... New best solution
## ... Procrustes: rmse 0.0001678306 max resid 0.0004812272
## ... Similar to previous best
## Run 4 stress 0.0003819668
## ... Procrustes: rmse 0.001121388 max resid 0.002927631
## ... Similar to previous best
## Run 5 stress 9.700219e-05
## ... New best solution
## ... Procrustes: rmse 0.0003010929 max resid 0.001095194
## ... Similar to previous best
## Run 6 stress 0.001773114
## Run 7 stress 9.938719e-05
## ... Procrustes: rmse 0.0002818232 max resid 0.001025566
## ... Similar to previous best
## Run 8 stress 0.001113563
## Run 9 stress 0.0001259815
## ... Procrustes: rmse 0.0003337162 max resid 0.001134933
## ... Similar to previous best
## Run 10 stress 0.0007217027
## Run 11 stress 0.0003558824
## ... Procrustes: rmse 0.001320733 max resid 0.003824559
## ... Similar to previous best
## Run 12 stress 0.000810413
## Run 13 stress 0.0002448885
## ... Procrustes: rmse 0.0008605715 max resid 0.002697355
## ... Similar to previous best
## Run 14 stress 0.0001026607
## ... Procrustes: rmse 0.0002961121 max resid 0.001067931
## ... Similar to previous best
## Run 15 stress 9.863899e-05
## ... Procrustes: rmse 0.0003584952 max resid 0.001203325
## ... Similar to previous best
## Run 16 stress 0.0005788802
## ... Procrustes: rmse 0.00192099 max resid 0.005592944
## ... Similar to previous best
## Run 17 stress 0.0006530928
## Run 18 stress 0.0001723084
## ... Procrustes: rmse 0.0005291992 max resid 0.001733827
## ... Similar to previous best
## Run 19 stress 0.0008949524
## Run 20 stress 0.0002386744
## ... Procrustes: rmse 0.0006969713 max resid 0.002206447
## ... Similar to previous best
## *** Solution reached
## Warning in metaMDS(Z3_Diet_dist): stress is (nearly) zero: you may have
## insufficient data
Z3_Diet_MDS1<-Z3_Diet_NMDS$points[,1]
Z3_Diet_MDS2<-Z3_Diet_NMDS$points[,2]
Z3_Diet_NMDS$stress
## [1] 9.700219e-05
Z3_Diet_NMDS<-data.frame(MDS1=Z3_Diet_MDS1, MDS2 = Z3_Diet_MDS2, Sample = Z3_Diet_metadata$Sample, Treatment = Z3_Diet_metadata$Treatment, Replicate = Z3_Diet_metadata$Replicate, Week = Z3_Diet_metadata$Week)
Z3_Diet_NMDS$Replicate<-as.character(Z3_Diet_NMDS$Replicate)
Z3_Diet_NMDS$Week<-as.character(Z3_Diet_NMDS$Week)
#Replicates Week 3
Z3_Replicates<-ggplot(Z3_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Zooplankton Week 3") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue"))
Z3_Replicates
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
pairwise.adonis(Z3_Diet_dist, factors = Z3_Diet_metadata$Replicate)
## pairs F.Model R2 p.value p.adjusted sig
## 1 Z3-1 vs Z3-2 1.187514 0.09743690 0.161 0.483
## 2 Z3-1 vs Z3-3 6.274153 0.36321047 0.019 0.057
## 3 Z3-2 vs Z3-3 0.976474 0.08896063 0.869 1.000
Z4_Diet<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z4_Diet_NMDS.csv", header = TRUE, row.names = 1, check.names = FALSE)
Z4_Diet_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Fish_vs_Control/Zoop_vs_Cont/Z4_Diet_metadata.csv", header = TRUE, check.names = FALSE)
Z4_t_Diet<-as.data.frame(t(Z4_Diet))
Z4_t_Diet_rarefied<-as.data.frame(round(rrarefy(Z4_t_Diet, 7000)))
Z4_Diet_dist<-as.matrix(vegdist(Z4_t_Diet_rarefied, "bray"))
Z4_Diet_NMDS<-metaMDS(Z4_Diet_dist)
## Run 0 stress 9.936402e-05
## Run 1 stress 9.655629e-05
## ... New best solution
## ... Procrustes: rmse 0.07138373 max resid 0.1462992
## Run 2 stress 0.001030054
## Run 3 stress 9.882808e-05
## ... Procrustes: rmse 0.112295 max resid 0.254118
## Run 4 stress 0.0001718088
## ... Procrustes: rmse 0.137418 max resid 0.294162
## Run 5 stress 9.562054e-05
## ... New best solution
## ... Procrustes: rmse 0.02176504 max resid 0.04680538
## Run 6 stress 9.015035e-05
## ... New best solution
## ... Procrustes: rmse 0.04426059 max resid 0.08595271
## Run 7 stress 0.0009424917
## Run 8 stress 9.601886e-05
## ... Procrustes: rmse 0.02751722 max resid 0.0520061
## Run 9 stress 9.525624e-05
## ... Procrustes: rmse 0.1427419 max resid 0.3681581
## Run 10 stress 9.431134e-05
## ... Procrustes: rmse 0.02459863 max resid 0.05183174
## Run 11 stress 0.0002908352
## ... Procrustes: rmse 0.1209962 max resid 0.2735064
## Run 12 stress 9.676143e-05
## ... Procrustes: rmse 0.06549136 max resid 0.1692803
## Run 13 stress 9.989229e-05
## ... Procrustes: rmse 0.05858794 max resid 0.1480027
## Run 14 stress 9.787555e-05
## ... Procrustes: rmse 0.1162025 max resid 0.2795147
## Run 15 stress 9.696199e-05
## ... Procrustes: rmse 0.01634181 max resid 0.04069986
## Run 16 stress 9.70296e-05
## ... Procrustes: rmse 0.04098339 max resid 0.07925717
## Run 17 stress 9.754022e-05
## ... Procrustes: rmse 0.06509226 max resid 0.1720149
## Run 18 stress 9.757243e-05
## ... Procrustes: rmse 0.0271992 max resid 0.05235936
## Run 19 stress 9.982902e-05
## ... Procrustes: rmse 0.08655971 max resid 0.1766767
## Run 20 stress 9.5339e-05
## ... Procrustes: rmse 0.03538727 max resid 0.07108108
## *** No convergence -- monoMDS stopping criteria:
## 4: no. of iterations >= maxit
## 16: stress < smin
## Warning in metaMDS(Z4_Diet_dist): stress is (nearly) zero: you may have
## insufficient data
Z4_Diet_MDS1<-Z4_Diet_NMDS$points[,1]
Z4_Diet_MDS2<-Z4_Diet_NMDS$points[,2]
Z4_Diet_NMDS$stress
## [1] 9.015035e-05
Z4_Diet_NMDS<-data.frame(MDS1=Z4_Diet_MDS1, MDS2 = Z4_Diet_MDS2, Sample = Z4_Diet_metadata$Sample, Treatment = Z4_Diet_metadata$Treatment, Replicate = Z4_Diet_metadata$Replicate, Week = Z4_Diet_metadata$Week)
Z4_Diet_NMDS$Replicate<-as.character(Z4_Diet_NMDS$Replicate)
Z4_Diet_NMDS$Week<-as.character(Z4_Diet_NMDS$Week)
#Replicates Week 4
Z4_Replicates<-ggplot(Z4_Diet_NMDS, aes(x=MDS1, y = MDS2, col = Replicate)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Zooplankton Week 4") + theme(plot.title = element_text(size = 12, face = "bold")) + scale_color_manual(values = c("black", "red", "blue"))
Z4_Replicates
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(Z4_Diet_dist, factors = Z4_Diet_metadata$Replicate)
## Set of permutations < 'minperm'. Generating entire set.
## Set of permutations < 'minperm'. Generating entire set.
## pairs F.Model R2 p.value p.adjusted sig
## 1 Z4-1 vs Z4-2 2.7754526 0.31627458 0.200 0.6
## 2 Z4-1 vs Z4-3 0.9616508 0.16130613 0.611 1.0
## 3 Z4-2 vs Z4-3 0.4590497 0.08408968 0.511 1.0
#Week
Z3Z4_Diet_Only_Week<-ggplot(Z3Z4_Diet_Only_NMDS, aes(x=MDS1, y = MDS2, col = Week)) + geom_point() + stat_ellipse() + theme_classic() + labs(title = "Zooplankton Week 3 + 4") + theme(plot.title = element_text(size = 12, face = "bold"))+ scale_colour_manual(values = c("black", "red"))
Z3Z4_Diet_Only_Week
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
pairwise.adonis(Z3Z4_Diet_Only_dist, factors = Z3Z4_Diet_Only_metadata$Week)
## pairs F.Model R2 p.value p.adjusted sig
## 1 3 vs 4 0.6503515 0.0226996 0.543 0.543
Final Zoop (All 6 together)
Z_FINAL<-ggarrange(Z1Z2_Diet_Only_Replicates, Z1Z2_Diet_Only_Week, Z3Z4_Diet_Only_Replicates, Z3Z4_Diet_Only_Week, labels = c("A", "B", "C", "D", "E", "F"), common.legend = FALSE, legend = "right")
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
Z_FINAL
ZOOP + ART ALL (W0-W4)
ARTZOOP_ALL_ASV<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Treatments_vs_ALL/ARTZOOP_ALL.csv", header = TRUE, row.names = 1, check.names = FALSE)
ARTZOOP_ALL_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Treatments_vs_ALL/ARTZOOP_ALL_Metadata.csv", header = TRUE, check.names = FALSE)
ARTZOOP_t_ALL<-as.data.frame(t(ARTZOOP_ALL_ASV))
ARTZOOP_t_ALL_Rarefied<-as.data.frame(round(rrarefy(ARTZOOP_t_ALL, 7000)))
ARTZOOP_ALL_dist<-as.matrix(vegdist(ARTZOOP_t_ALL_Rarefied, "bray"))
ARTZOOP_ALL_NMDS<-metaMDS(ARTZOOP_ALL_dist)
## Run 0 stress 0.1259179
## Run 1 stress 0.1145187
## ... New best solution
## ... Procrustes: rmse 0.04615727 max resid 0.2595244
## Run 2 stress 0.1274349
## Run 3 stress 0.1145188
## ... Procrustes: rmse 3.340079e-05 max resid 0.0001510824
## ... Similar to previous best
## Run 4 stress 0.2103329
## Run 5 stress 0.1309459
## Run 6 stress 0.1239576
## Run 7 stress 0.1145186
## ... New best solution
## ... Procrustes: rmse 1.483271e-05 max resid 7.104959e-05
## ... Similar to previous best
## Run 8 stress 0.1881847
## Run 9 stress 0.1281942
## Run 10 stress 0.127116
## Run 11 stress 0.1239577
## Run 12 stress 0.1145187
## ... Procrustes: rmse 2.109292e-05 max resid 9.452989e-05
## ... Similar to previous best
## Run 13 stress 0.1235514
## Run 14 stress 0.1145186
## ... Procrustes: rmse 6.118084e-05 max resid 0.0002719786
## ... Similar to previous best
## Run 15 stress 0.1145186
## ... Procrustes: rmse 0.0002198967 max resid 0.001155894
## ... Similar to previous best
## Run 16 stress 0.1277543
## Run 17 stress 0.1235513
## Run 18 stress 0.1271159
## Run 19 stress 0.1250812
## Run 20 stress 0.1145184
## ... New best solution
## ... Procrustes: rmse 0.0001176674 max resid 0.0006244035
## ... Similar to previous best
## *** Solution reached
ARTZOOP_ALL_MDS1<-ARTZOOP_ALL_NMDS$points[,1]
ARTZOOP_ALL_MDS2<-ARTZOOP_ALL_NMDS$points[,2]
ARTZOOP_ALL_NMDS$stress
## [1] 0.1145184
ARTZOOP_ALL_NMDS<-data.frame(MDS1=ARTZOOP_ALL_MDS1, MDS2 = ARTZOOP_ALL_MDS2, Treatment = ARTZOOP_ALL_metadata$Treatment)
ARTZOOP_ALL<-ggplot(ARTZOOP_ALL_NMDS, aes(x=MDS1, y = MDS2, col = Treatment)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia vs. Zooplankton (All Weeks)", subtitle = "Larval Northern Pike Gut Microbiota") + theme(plot.title = element_text(size = 14, face = "bold")) + scale_color_manual(values = c("black", "firebrick2", "firebrick3", "firebrick", "firebrick4", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray")) + geom_text(aes(label = "stress = 0.11"), x = -0.25, y = 0.5, size = 4, color = "black")
ARTZOOP_ALL$labels$colour<-"Treatment/Week"
ARTZOOP_ALL
## Too few points to calculate an ellipse
## Too few points to calculate an ellipse
## Warning: Removed 2 rows containing missing values (geom_path).
pairwise.adonis(ARTZOOP_ALL_dist, factors = ARTZOOP_ALL_NMDS$Treatment)
## 'nperm' >= set of all permutations: complete enumeration.
## Set of permutations < 'minperm'. Generating entire set.
## pairs F.Model R2
## 1 Week 0 vs Artemia/Week 1 2.011374e+01 0.58960822
## 2 Week 0 vs Zooplankton/Week 1 5.563473e+01 0.79895089
## 3 Week 0 vs Artemia/Week 2 9.330211e+01 0.89453712
## 4 Week 0 vs Zooplankton/Week 2 1.834205e+01 0.53409882
## 5 Week 0 vs Zooplankton/Week 3 1.776049e+02 0.89878793
## 6 Week 0 vs Artemia/Week 3 5.345427e+00 0.23921794
## 7 Week 0 vs Zooplankton/Week 4 1.392046e+04 0.99913870
## 8 Week 0 vs Artemia/Week 4 9.114023e+02 0.99563034
## 9 Artemia/Week 1 vs Zooplankton/Week 1 7.236567e+00 0.23166973
## 10 Artemia/Week 1 vs Artemia/Week 2 1.151448e+01 0.35413399
## 11 Artemia/Week 1 vs Zooplankton/Week 2 1.586781e+01 0.37899778
## 12 Artemia/Week 1 vs Zooplankton/Week 3 6.414295e+02 0.95531921
## 13 Artemia/Week 1 vs Artemia/Week 3 7.166706e+01 0.72635244
## 14 Artemia/Week 1 vs Zooplankton/Week 4 4.682064e+02 0.95512094
## 15 Artemia/Week 1 vs Artemia/Week 4 5.110240e+01 0.78495416
## 16 Zooplankton/Week 1 vs Artemia/Week 2 7.514259e+00 0.26352636
## 17 Zooplankton/Week 1 vs Zooplankton/Week 2 3.843549e+01 0.59649563
## 18 Zooplankton/Week 1 vs Zooplankton/Week 3 1.270708e+03 0.97693563
## 19 Zooplankton/Week 1 vs Artemia/Week 3 1.039274e+02 0.79377889
## 20 Zooplankton/Week 1 vs Zooplankton/Week 4 1.156588e+03 0.98133360
## 21 Zooplankton/Week 1 vs Artemia/Week 4 1.304556e+02 0.90308441
## 22 Artemia/Week 2 vs Zooplankton/Week 2 5.153398e+01 0.69141590
## 23 Artemia/Week 2 vs Zooplankton/Week 3 1.501081e+03 0.98233078
## 24 Artemia/Week 2 vs Artemia/Week 3 7.534333e+01 0.75841357
## 25 Artemia/Week 2 vs Zooplankton/Week 4 1.974845e+03 0.99047067
## 26 Artemia/Week 2 vs Artemia/Week 4 1.908825e+02 0.94551287
## 27 Zooplankton/Week 2 vs Zooplankton/Week 3 6.350477e+02 0.95202742
## 28 Zooplankton/Week 2 vs Artemia/Week 3 7.383471e+01 0.71799406
## 29 Zooplankton/Week 2 vs Zooplankton/Week 4 4.651715e+02 0.95093745
## 30 Zooplankton/Week 2 vs Artemia/Week 4 5.171776e+01 0.76372520
## 31 Zooplankton/Week 3 vs Artemia/Week 3 3.241659e+02 0.90760596
## 32 Zooplankton/Week 3 vs Zooplankton/Week 4 5.126695e-01 0.01798041
## 33 Zooplankton/Week 3 vs Artemia/Week 4 4.358508e+02 0.95612600
## 34 Artemia/Week 3 vs Zooplankton/Week 4 2.125720e+02 0.89476874
## 35 Artemia/Week 3 vs Artemia/Week 4 1.042584e+00 0.05778465
## 36 Zooplankton/Week 4 vs Artemia/Week 4 5.785846e+05 0.99997926
## p.value p.adjusted sig
## 1 0.002 0.072
## 2 0.006 0.216
## 3 0.004 0.144
## 4 0.001 0.036 .
## 5 0.003 0.108
## 6 0.028 1.000
## 7 0.004 0.144
## 8 0.100 1.000
## 9 0.001 0.036 .
## 10 0.001 0.036 .
## 11 0.001 0.036 .
## 12 0.001 0.036 .
## 13 0.001 0.036 .
## 14 0.001 0.036 .
## 15 0.002 0.072
## 16 0.001 0.036 .
## 17 0.001 0.036 .
## 18 0.001 0.036 .
## 19 0.001 0.036 .
## 20 0.001 0.036 .
## 21 0.002 0.072
## 22 0.001 0.036 .
## 23 0.001 0.036 .
## 24 0.001 0.036 .
## 25 0.001 0.036 .
## 26 0.004 0.144
## 27 0.001 0.036 .
## 28 0.001 0.036 .
## 29 0.001 0.036 .
## 30 0.002 0.072
## 31 0.001 0.036 .
## 32 0.981 1.000
## 33 0.002 0.072
## 34 0.001 0.036 .
## 35 0.219 1.000
## 36 0.002 0.072
#Testing for Group Homogeneity of Variance (betadisper & permutest):
ARTZOOP_ALL_dist<-vegdist(ARTZOOP_t_ALL_Rarefied, "bray")
ARTZOOP_ALL_dist_disper<-betadisper(ARTZOOP_ALL_dist, group = ARTZOOP_ALL_NMDS$Treatment)
ARTZOOP_ALL_dist_permutest<-permutest(ARTZOOP_ALL_dist_disper, group = ARTZOOP_ALL_NMDS$Treatment, pairwise = TRUE, permutation = 999)
ARTZOOP_ALL_dist_permutest
##
## Permutation test for homogeneity of multivariate dispersions
## Permutation: free
## Number of permutations: 999
##
## Response: Distances
## Df Sum Sq Mean Sq F N.Perm Pr(>F)
## Groups 8 1.0618 0.132731 6.9515 999 0.001 ***
## Residuals 94 1.7948 0.019094
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Pairwise comparisons:
## (Observed p-value below diagonal, permuted p-value above diagonal)
## Artemia/Week 1 Artemia/Week 2 Artemia/Week 3
## Artemia/Week 1 1.0700e-01 3.0500e-01
## Artemia/Week 2 1.0695e-01 9.8100e-01
## Artemia/Week 3 3.1037e-01 9.7681e-01
## Artemia/Week 4 6.2024e-03 3.6156e-03 2.3675e-01
## Week 0 6.5088e-01 9.5552e-02 4.3313e-01
## Zooplankton/Week 1 3.4658e-01 5.0439e-01 7.0221e-01
## Zooplankton/Week 2 3.9686e-01 4.6044e-01 6.4057e-01
## Zooplankton/Week 3 1.8267e-08 4.7446e-08 5.5206e-03
## Zooplankton/Week 4 2.4394e-06 6.6546e-07 2.4939e-02
## Artemia/Week 4 Week 0 Zooplankton/Week 1
## Artemia/Week 1 8.0000e-03 6.6300e-01 3.8200e-01
## Artemia/Week 2 6.0000e-03 8.3000e-02 5.2200e-01
## Artemia/Week 3 2.1600e-01 4.2000e-01 7.4200e-01
## Artemia/Week 4 4.2000e-02 2.5000e-02
## Week 0 3.7578e-02 3.0300e-01
## Zooplankton/Week 1 1.6606e-02 3.1031e-01
## Zooplankton/Week 2 1.9680e-02 3.5392e-01 9.2316e-01
## Zooplankton/Week 3 7.3429e-01 7.7124e-07 5.6114e-07
## Zooplankton/Week 4 8.9286e-01 2.3949e-05 2.4175e-05
## Zooplankton/Week 2 Zooplankton/Week 3
## Artemia/Week 1 4.1900e-01 1.0000e-03
## Artemia/Week 2 4.6900e-01 1.0000e-03
## Artemia/Week 3 6.4400e-01 5.0000e-03
## Artemia/Week 4 2.4000e-02 7.3300e-01
## Week 0 3.4700e-01 1.0000e-03
## Zooplankton/Week 1 9.2400e-01 1.0000e-03
## Zooplankton/Week 2 1.0000e-03
## Zooplankton/Week 3 7.9728e-07
## Zooplankton/Week 4 3.6583e-05 5.2232e-01
## Zooplankton/Week 4
## Artemia/Week 1 0.001
## Artemia/Week 2 0.001
## Artemia/Week 3 0.026
## Artemia/Week 4 0.912
## Week 0 0.001
## Zooplankton/Week 1 0.001
## Zooplankton/Week 2 0.001
## Zooplankton/Week 3 0.540
## Zooplankton/Week 4
#Results = significant, BUT looking at NMDS shows that centroids do not overlap, thus findings are still valid.
ZOOP + ART ALL (W0-W4) + CONTAMINATION
ARTZOOP_ALL_ASV_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Treatments_vs_ALL/ARTZOOP_ALL_CONTAM.csv", header = TRUE, row.names = 1, check.names = FALSE)
ARTZOOP_ALL_metadata_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_NMDS/Treatments_vs_ALL/ARTZOOP_ALL_CONTAM_Metadata.csv", header = TRUE, check.names = FALSE)
ARTZOOP_t_ALL_C<-as.data.frame(t(ARTZOOP_ALL_ASV_C))
ARTZOOP_t_ALL_Rarefied_C<-as.data.frame(round(rrarefy(ARTZOOP_t_ALL_C, 7000)))
ARTZOOP_ALL_dist_C<-as.matrix(vegdist(ARTZOOP_t_ALL_Rarefied_C, "bray"))
ARTZOOP_ALL_NMDS_C<-metaMDS(ARTZOOP_ALL_dist_C)
## Run 0 stress 0.1441929
## Run 1 stress 0.138766
## ... New best solution
## ... Procrustes: rmse 0.03623675 max resid 0.2755888
## Run 2 stress 0.1387659
## ... New best solution
## ... Procrustes: rmse 0.0001048856 max resid 0.0008250933
## ... Similar to previous best
## Run 3 stress 0.1387664
## ... Procrustes: rmse 0.0005701379 max resid 0.004269581
## ... Similar to previous best
## Run 4 stress 0.1287879
## ... New best solution
## ... Procrustes: rmse 0.03517168 max resid 0.2600099
## Run 5 stress 0.1356105
## Run 6 stress 0.128788
## ... Procrustes: rmse 0.0001042874 max resid 0.0009479441
## ... Similar to previous best
## Run 7 stress 0.1356103
## Run 8 stress 0.1380085
## Run 9 stress 0.2116432
## Run 10 stress 0.135263
## Run 11 stress 0.2172969
## Run 12 stress 0.135263
## Run 13 stress 0.2189862
## Run 14 stress 0.135646
## Run 15 stress 0.1356124
## Run 16 stress 0.1287879
## ... New best solution
## ... Procrustes: rmse 4.809587e-05 max resid 0.0004348631
## ... Similar to previous best
## Run 17 stress 0.1287877
## ... New best solution
## ... Procrustes: rmse 2.801743e-05 max resid 0.0002465715
## ... Similar to previous best
## Run 18 stress 0.1381471
## Run 19 stress 0.1356459
## Run 20 stress 0.135646
## *** Solution reached
ARTZOOP_ALL_MDS1_C<-ARTZOOP_ALL_NMDS_C$points[,1]
ARTZOOP_ALL_MDS2_C<-ARTZOOP_ALL_NMDS_C$points[,2]
ARTZOOP_ALL_NMDS_C$stress
## [1] 0.1287877
ARTZOOP_ALL_NMDS_C<-data.frame(MDS1=ARTZOOP_ALL_MDS1_C, MDS2 = ARTZOOP_ALL_MDS2_C, Treatment = ARTZOOP_ALL_metadata_C$Treatment)
ARTZOOP_ALL_C<-ggplot(ARTZOOP_ALL_NMDS_C, aes(x=MDS1, y = MDS2, col = Treatment)) + geom_point() + stat_ellipse() + theme_classic()+ labs(title = "Artemia vs. Zooplankton (All Weeks + Contamination)", subtitle = "Larval Northern Pike Gut Microbiota") + theme(plot.title = element_text(size = 14, face = "bold")) + scale_color_manual(values = c("black","firebrick2", "firebrick3", "firebrick", "firebrick4", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray")) + geom_text(aes(label = "stress = 0.13"), x = -0.4, y = 0.5, size = 4, color = "black")
ARTZOOP_ALL_C$labels$colour<-"Treatment/Week"
ARTZOOP_ALL_C
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(ARTZOOP_ALL_dist_C, factors = ARTZOOP_ALL_NMDS_C$Treatment)
## pairs F.Model R2
## 1 Week 0 vs Artemia/Week 1 2.032424e+01 0.59212501
## 2 Week 0 vs Zooplankton/Week 1 5.592969e+01 0.79979890
## 3 Week 0 vs Artemia/Week 2 8.578970e+01 0.88635154
## 4 Week 0 vs Zooplankton/Week 2 1.832503e+01 0.53386779
## 5 Week 0 vs Zooplankton/Week 3 2.283192e+02 0.91945849
## 6 Week 0 vs Artemia/Week 3 6.191840e+00 0.26698355
## 7 Week 0 vs Zooplankton/Week 4 1.955569e+04 0.99938674
## 8 Week 0 vs Artemia/Week 4 2.466474e+00 0.17049587
## 9 Artemia/Week 1 vs Zooplankton/Week 1 7.049227e+00 0.22703389
## 10 Artemia/Week 1 vs Artemia/Week 2 1.262511e+01 0.37546673
## 11 Artemia/Week 1 vs Zooplankton/Week 2 1.572715e+01 0.37690451
## 12 Artemia/Week 1 vs Zooplankton/Week 3 7.672531e+02 0.96237079
## 13 Artemia/Week 1 vs Artemia/Week 3 7.589004e+01 0.73758392
## 14 Artemia/Week 1 vs Zooplankton/Week 4 5.672463e+02 0.96266417
## 15 Artemia/Week 1 vs Artemia/Week 4 4.941618e+01 0.69194654
## 16 Zooplankton/Week 1 vs Artemia/Week 2 8.627540e+00 0.29120001
## 17 Zooplankton/Week 1 vs Zooplankton/Week 2 3.798823e+01 0.59367528
## 18 Zooplankton/Week 1 vs Zooplankton/Week 3 1.486037e+03 0.98021157
## 19 Zooplankton/Week 1 vs Artemia/Week 3 1.079280e+02 0.79989329
## 20 Zooplankton/Week 1 vs Zooplankton/Week 4 1.381212e+03 0.98432169
## 21 Zooplankton/Week 1 vs Artemia/Week 4 6.144549e+01 0.73635483
## 22 Artemia/Week 2 vs Zooplankton/Week 2 5.269089e+01 0.69613251
## 23 Artemia/Week 2 vs Zooplankton/Week 3 1.622334e+03 0.98362976
## 24 Artemia/Week 2 vs Artemia/Week 3 7.591114e+01 0.75978654
## 25 Artemia/Week 2 vs Zooplankton/Week 4 2.041622e+03 0.99077948
## 26 Artemia/Week 2 vs Artemia/Week 4 4.275880e+01 0.69235155
## 27 Zooplankton/Week 2 vs Zooplankton/Week 3 7.610072e+02 0.95964728
## 28 Zooplankton/Week 2 vs Artemia/Week 3 7.759620e+01 0.72794528
## 29 Zooplankton/Week 2 vs Zooplankton/Week 4 5.642167e+02 0.95919871
## 30 Zooplankton/Week 2 vs Artemia/Week 4 4.946435e+01 0.67331094
## 31 Zooplankton/Week 3 vs Artemia/Week 3 3.575332e+02 0.91550015
## 32 Zooplankton/Week 3 vs Zooplankton/Week 4 5.306193e-01 0.01859824
## 33 Zooplankton/Week 3 vs Artemia/Week 4 2.780146e+01 0.49822101
## 34 Artemia/Week 3 vs Zooplankton/Week 4 2.342052e+02 0.90355131
## 35 Artemia/Week 3 vs Artemia/Week 4 1.646525e+01 0.39708547
## 36 Zooplankton/Week 4 vs Artemia/Week 4 1.684525e+01 0.45718917
## p.value p.adjusted sig
## 1 0.001 0.036 .
## 2 0.001 0.036 .
## 3 0.006 0.216
## 4 0.004 0.144
## 5 0.003 0.108
## 6 0.021 0.756
## 7 0.003 0.108
## 8 0.152 1.000
## 9 0.002 0.072
## 10 0.001 0.036 .
## 11 0.001 0.036 .
## 12 0.001 0.036 .
## 13 0.001 0.036 .
## 14 0.001 0.036 .
## 15 0.001 0.036 .
## 16 0.001 0.036 .
## 17 0.001 0.036 .
## 18 0.001 0.036 .
## 19 0.001 0.036 .
## 20 0.001 0.036 .
## 21 0.001 0.036 .
## 22 0.001 0.036 .
## 23 0.001 0.036 .
## 24 0.001 0.036 .
## 25 0.001 0.036 .
## 26 0.001 0.036 .
## 27 0.001 0.036 .
## 28 0.001 0.036 .
## 29 0.001 0.036 .
## 30 0.001 0.036 .
## 31 0.001 0.036 .
## 32 0.966 1.000
## 33 0.001 0.036 .
## 34 0.001 0.036 .
## 35 0.001 0.036 .
## 36 0.001 0.036 .
#Testing for Group Homogeneity of Variance (betadisper & permutest):
ARTZOOP_ALL_dist_C<-(vegdist(ARTZOOP_t_ALL_Rarefied_C, "bray"))
ARTZOOP_ALL_dist_disper_C<-betadisper(ARTZOOP_ALL_dist_C, group = ARTZOOP_ALL_NMDS_C$Treatment)
ARTZOOP_ALL_dist_permutest_C<-permutest(ARTZOOP_ALL_dist_disper_C, group = ARTZOOP_ALL_NMDS$Treatment, pairwise = TRUE, permutation = 999)
ARTZOOP_ALL_dist_permutest_C
##
## Permutation test for homogeneity of multivariate dispersions
## Permutation: free
## Number of permutations: 999
##
## Response: Distances
## Df Sum Sq Mean Sq F N.Perm Pr(>F)
## Groups 8 1.2084 0.151047 5.7457 999 0.001 ***
## Residuals 102 2.6815 0.026289
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Pairwise comparisons:
## (Observed p-value below diagonal, permuted p-value above diagonal)
## Artemia/Week 1 Artemia/Week 2 Artemia/Week 3
## Artemia/Week 1 1.0700e-01 3.2600e-01
## Artemia/Week 2 1.0267e-01 9.6600e-01
## Artemia/Week 3 3.0938e-01 9.6846e-01
## Artemia/Week 4 6.9246e-01 2.3969e-01 2.8127e-01
## Week 0 6.3173e-01 8.4519e-02 4.2220e-01
## Zooplankton/Week 1 3.7479e-01 4.5392e-01 6.7406e-01
## Zooplankton/Week 2 4.0676e-01 4.3980e-01 6.3199e-01
## Zooplankton/Week 3 1.7534e-08 3.3662e-08 5.1974e-03
## Zooplankton/Week 4 2.3985e-06 4.7013e-07 2.3835e-02
## Artemia/Week 4 Week 0 Zooplankton/Week 1
## Artemia/Week 1 6.9600e-01 6.1600e-01 4.0100e-01
## Artemia/Week 2 2.6000e-01 7.0000e-02 4.8900e-01
## Artemia/Week 3 3.0700e-01 4.3600e-01 6.9200e-01
## Artemia/Week 4 9.7000e-01 3.8600e-01
## Week 0 9.7036e-01 3.1100e-01
## Zooplankton/Week 1 3.7022e-01 3.1134e-01
## Zooplankton/Week 2 3.6575e-01 3.4567e-01 9.5454e-01
## Zooplankton/Week 3 2.8596e-04 6.1865e-07 3.9273e-07
## Zooplankton/Week 4 3.9693e-03 2.1317e-05 1.8878e-05
## Zooplankton/Week 2 Zooplankton/Week 3
## Artemia/Week 1 4.1100e-01 1.0000e-03
## Artemia/Week 2 4.2500e-01 1.0000e-03
## Artemia/Week 3 6.4800e-01 5.0000e-03
## Artemia/Week 4 3.6000e-01 1.0000e-03
## Week 0 3.4200e-01 1.0000e-03
## Zooplankton/Week 1 9.7100e-01 1.0000e-03
## Zooplankton/Week 2 1.0000e-03
## Zooplankton/Week 3 7.1586e-07
## Zooplankton/Week 4 3.4138e-05 5.0793e-01
## Zooplankton/Week 4
## Artemia/Week 1 0.001
## Artemia/Week 2 0.001
## Artemia/Week 3 0.020
## Artemia/Week 4 0.002
## Week 0 0.001
## Zooplankton/Week 1 0.001
## Zooplankton/Week 2 0.001
## Zooplankton/Week 3 0.509
## Zooplankton/Week 4
#Results = significant, BUT looking at NMDS shows that centroids do not overlap, thus findings are still valid.
Replicates Graphs
ggarrange(A1_Replicates, A2_Replicates, Z2_Replicates, labels = c("A", "B", "C"), common.legend = FALSE, legend = "right")
Initial Analysis is completed with biom-format and mothur commands using bash commands. Please refer to biom_mothur_code.txt in pathway ~/Dropbox/bdgallo_MS_SUNYESF/NON_R_Scripts for information
The final product fom these commands is CH_2_ALL_ASV_Table.groups.rarefaction
CH.2 Rarefaction (All)
CH_2_Rarefaction_data<-read.table("~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_Rarefaction_Alpha_Diversity/CH_2_seqtab_ALL_COMBINED.groups.rarefaction", header=TRUE)
CH_2_Rarefaction_ColumnsPrimary<-CH_2_Rarefaction_data[grepl("user", names(CH_2_Rarefaction_data))]
CH_2_Rarefaction_numSampled<-CH_2_Rarefaction_data[, c("numsampled")]
CH_2_Rarefaction_data<-cbind (CH_2_Rarefaction_numSampled, CH_2_Rarefaction_ColumnsPrimary)
CH_2_Rarefaction_long<-melt(CH_2_Rarefaction_data, id.vars="CH_2_Rarefaction_numSampled")
write.csv(CH_2_Rarefaction_long, "CH_2_Rarefaction_long.csv")
#Offload data as .csv file, manually input treatment information in separate column
#Once complete, re-upload .csv as data frame, overwriting initial file of same name
CH_2_Rarefaction_long<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_Rarefaction_Alpha_Diversity/CH_2_Rarefaction_long.csv", header = TRUE)
Fish Only Rarefaction
#Take CH_2_Rarefaction_long and delete all environmental data. Rename and upload.
CH_2_FishOnly_Rarefaction_long<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_Rarefaction_Alpha_Diversity/CH_2_FishOnly_Rarefaction_long.csv", header = TRUE)
CH_2_FishOnly_Rarefaction_long$Treatment<-factor(CH_2_FishOnly_Rarefaction_long$Treatment, levels = c("Pre-Food", "Artemia1W", "Artemia2W", "Artemia3W", "Artemia4W", "Zooplankton1W", "Zooplankton2W", "Zooplankton3W", "Zooplankton4W"))
CH_2_FishOnly_rarefaction<-ggplot(data=CH_2_FishOnly_Rarefaction_long, aes(x=CH_2_Rarefaction_numSampled, y=value, color=Treatment)) + geom_line(aes(group=variable), size=1.5) + xlab("Number of Sequences") + ylab("ASVs (100%)") + guides (color=guide_legend("Treatment")) + theme_classic() + labs(title="Rarefaction Curves", subtitle = "Northern Pike Diet") + scale_color_manual(values = c("black", "red", "blue", "blue4", "orange", "deeppink", "brown", "cyan","darksalmon")) + guides(linetype = guide_legend(override.aes = list(size = 1.5)))
CH_2_FishOnly_rarefaction
## Warning: Removed 35927 rows containing missing values (geom_path).
Note that taxa excel sheet was cleaned manually by removing all NA calls in Kingdom and Phylum columns. Additionally, any Kingdom tracing to Eukaryotes/Archaea were also removed
Normalized Top 10 Taxa Bar Graphs (ALL):
ALL_ASV_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_seqtab_ALL_COMBINED.csv", header = TRUE, row.names = 1, check.names = FALSE)
ALL_ASV_t_C<-as.data.frame(t(ALL_ASV_C))
ALL_ASV_t_Rarefied_C<-as.data.frame(round(rrarefy(ALL_ASV_t_C,7000)))
ALL_ASV_Rarefied_C<-t(ALL_ASV_t_Rarefied_C)
ALL_Rarefied_C<-as.matrix(ALL_ASV_Rarefied_C)
ALL_Norm_Phylo_C<-otu_table(ALL_Rarefied_C, taxa_are_rows = TRUE)
CH_2_taxa_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_taxa.csv", header = TRUE, check.names = FALSE, row.names = 1)
CH_2_taxa_C<-as.matrix(CH_2_taxa_C)
CH_2_taxa_Phylo_C = tax_table(CH_2_taxa_C)
ALL_metadata_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_ALL_metadata.csv", header = TRUE, row.names = 1, check.names = FALSE)
ALL_metadata_C<-sample_data(ALL_metadata_C)
CH_2_Diet_Phylo_Norm_C<-phyloseq(ALL_Norm_Phylo_C, CH_2_taxa_Phylo_C, ALL_metadata_C)
CH_2_taxa_top10_Norm_C<-names(sort(taxa_sums(CH_2_Diet_Phylo_Norm_C), decreasing = TRUE)) [1:10]
CH_2_Diet_Phylo.top10_Norm_C<-transform_sample_counts(CH_2_Diet_Phylo_Norm_C, function(ALL_Norm_Phylo_C) ALL_Norm_Phylo_C/sum(ALL_Norm_Phylo_C))
CH_2_Diet_Phylo.top10_Norm_C<-prune_taxa(CH_2_taxa_top10_Norm_C,CH_2_Diet_Phylo.top10_Norm_C)
sample_data(CH_2_Diet_Phylo.top10_Norm_C)$Treatment<-factor(sample_data(CH_2_Diet_Phylo.top10_Norm_C)$Treatment, levels = c("Artemia", "Zooplankton", "Artemia Water Control Week 1+2", "Zooplankton Water Control Week 1+2", "Artemia Water Control Week 3+4", "Zooplankton Water Control Week 3+4", "Dry Food", "Week 0", "Artemia/Week 1", "Zooplankton/Week 1", "Artemia/Week 2", "Zooplankton/Week 2", "Artemia/Week 3", "Zooplankton/Week 3", "Artemia/Week 4", "Zooplankton/Week 4"))
CH_2_Top10_Norm_C<-plot_bar(CH_2_Diet_Phylo.top10_Norm_C, x = "Treatment", fill = "Genus") + theme_classic()
CH_2_Top10_Norm_C + geom_bar(aes(color=Genus, fill=Genus), stat="identity", position = "stack") + theme(axis.text.x = element_text(angle = 45, hjust = 1))
write.csv(otu_table(CH_2_Diet_Phylo.top10_Norm_C), "CH_2_Top10_Taxa_Percent_C.csv")
#Offload Top10 ASV data - calculate average for each group so that y-axis = 0-1 (e.g. 0 - 100%). Also calculate SE and reupload data.
ALL (Normalized - No contamination)
ALL_ASV<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_seqtab_ALL_COMBINED_No_Contamination.csv", header = TRUE, row.names = 1, check.names = FALSE)
ALL_ASV_t<-as.data.frame(t(ALL_ASV))
ALL_ASV_t_Rarefied<-as.data.frame(round(rrarefy(ALL_ASV_t,7000)))
ALL_ASV_Rarefied<-t(ALL_ASV_t_Rarefied)
ALL_Rarefied<-as.matrix(ALL_ASV_Rarefied)
ALL_Norm_Phylo<-otu_table(ALL_Rarefied, taxa_are_rows = TRUE)
CH_2_taxa<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_taxa.csv", header = TRUE, check.names = FALSE, row.names = 1)
CH_2_taxa<-as.matrix(CH_2_taxa)
CH_2_taxa_Phylo = tax_table(CH_2_taxa)
ALL_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_ALL_metadata_No_contamination.csv", header = TRUE, row.names = 1, check.names = FALSE)
ALL_metadata<-sample_data(ALL_metadata)
CH_2_Diet_Phylo_Norm<-phyloseq(ALL_Norm_Phylo, CH_2_taxa_Phylo, ALL_metadata)
CH_2_taxa_top10_Norm<-names(sort(taxa_sums(CH_2_Diet_Phylo_Norm), decreasing = TRUE)) [1:10]
CH_2_Diet_Phylo.top10_Norm<-transform_sample_counts(CH_2_Diet_Phylo_Norm, function(ALL_Norm_Phylo) ALL_Norm_Phylo/sum(ALL_Norm_Phylo))
CH_2_Diet_Phylo.top10_Norm<-prune_taxa(CH_2_taxa_top10_Norm,CH_2_Diet_Phylo.top10_Norm)
sample_data(CH_2_Diet_Phylo.top10_Norm)$Treatment<-factor(sample_data(CH_2_Diet_Phylo.top10_Norm)$Treatment, levels = c("Artemia", "Zooplankton", "Artemia Water Control Week 1+2", "Zooplankton Water Control Week 1+2", "Artemia Water Control Week 3+4", "Zooplankton Water Control Week 3+4", "Dry Food", "Week 0", "Artemia/Week 1", "Zooplankton/Week 1", "Artemia/Week 2", "Zooplankton/Week 2", "Artemia/Week 3", "Zooplankton/Week 3", "Artemia/Week 4", "Zooplankton/Week 4"))
CH_2_Top10_Norm<-plot_bar(CH_2_Diet_Phylo.top10_Norm, x = "Treatment", fill = "Genus") + theme_classic()
CH_2_Top10_Norm + geom_bar(aes(color=Genus, fill=Genus), stat="identity", position = "stack") + theme(axis.text.x = element_text(angle = 45, hjust = 1))
write.csv(otu_table(CH_2_Diet_Phylo.top10_Norm), "CH_2_Top10_Taxa_Percent.csv")
#Offload Top10 ASV data - calculate average for each group so that y-axis = 0-1 (e.g. 0 - 100%). Also calculate SE and reupload data.
All (+ Contamination)
#ENV
ZOOP_Palette<-function (n)
{
x <- ramp(seq.int(0, 1, length.out = n))
if (ncol(x) == 4L)
rgb(x[, 1L], x[, 2L], x[, 3L], x[, 4L], maxColorValue = 255)
else rgb(x[, 1L], x[, 2L], x[, 3L], maxColorValue = 255)
}
CH_2_Top10_Taxa_Percent_ENV_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Taxa_Graphs/CH_2_Top10_ENV_COMBINED_C.csv", header=TRUE, check.names = FALSE)
CH_2_Top10_Taxa_Percent_ENV_C$Treatment<-factor(CH_2_Top10_Taxa_Percent_ENV_C$Treatment, levels = c("Artemia Water Control Week 1+2", "Artemia", "Artemia Water Control Week 3+4", "Dry Food", "Zooplankton Water Control Week 1+2", "Zooplankton", "Zooplankton Water Control Week 3+4"))
colourCount<-length(unique(CH_2_Top10_Taxa_Percent_ENV_C$Genus))
getPalette<-colorRampPalette(brewer.pal(8, "Set1"))
CH_2_Top10_Taxa_Percent_Graph_ENV_C<-ggplot(CH_2_Top10_Taxa_Percent_ENV_C, aes(x=Treatment, y = AVG, fill = Genus)) + geom_bar( colour = "black", stat="identity", position = position_dodge()) + theme_classic() + scale_fill_manual(values = getPalette(colourCount)) + labs(title = "Environmental Samples (+ Contamination)", subtitle = "Top 10 Bacterial Genera", x = "", y = "Average ASV Abundance") + theme(axis.text.x = element_text(angle = 45, hjust = 1)) + geom_errorbar(aes(ymin=AVG-SE, ymax = AVG+SE), width=.2, position=position_dodge(.9))
CH_2_Top10_Taxa_Percent_Graph_ENV_C
## Warning: Removed 20 rows containing missing values (geom_errorbar).
#FISH
CH_2_Top10_Taxa_Percent_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Taxa_Graphs/CH_2_Top10_Taxa_FISH_COMBINED_C.csv", header=TRUE, check.names = FALSE)
CH_2_Top10_Taxa_Percent_C$Treatment<-factor(CH_2_Top10_Taxa_Percent_C$Treatment, levels = c("Week 0", "Artemia/Week 1", "Artemia/Week 2", "Artemia/Week 3", "Artemia/Week 4", "Zooplankton/Week 1", "Zooplankton/Week 2", "Zooplankton/Week 3", "Zooplankton/Week 4"))
colourCount<-length(unique(CH_2_Top10_Taxa_Percent_C$Genus))
getPalette<-colorRampPalette(brewer.pal(8, "Set1"))
CH_2_Top10_Taxa_Percent_Graph_C<-ggplot(CH_2_Top10_Taxa_Percent_C, aes(x=Treatment, y = AVG, fill = Genus)) + geom_bar( colour = "black", stat="identity", position = position_dodge()) + theme_classic() + scale_fill_manual(values = getPalette(colourCount)) + labs(title = "Larval Northern Pike Gut Microbiota (+ Contamination)", subtitle = "Top 10 Bacterial Genera", x = "", y = "Average ASV Abundance") + theme(axis.text.x = element_text(angle = 45, hjust = 1)) + geom_errorbar(aes(ymin=AVG-SE, ymax = AVG+SE), width=.2, position=position_dodge(.9))
CH_2_Top10_Taxa_Percent_Graph_C
#COMBINE
ggarrange(CH_2_Top10_Taxa_Percent_Graph_ENV_C, CH_2_Top10_Taxa_Percent_Graph_C, labels = c("A", "B"), common.legend = TRUE, legend = "right", nrow = 2)
## Warning: Removed 20 rows containing missing values (geom_errorbar).
## Warning: Removed 20 rows containing missing values (geom_errorbar).
All
#ENV
CH_2_Top10_Taxa_Percent_ENV<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Taxa_Graphs/CH_2_Top10_ENV_COMBINED.csv", header=TRUE, check.names = FALSE)
CH_2_Top10_Taxa_Percent_ENV$Treatment<-factor(CH_2_Top10_Taxa_Percent_ENV$Treatment, levels = c("Artemia Water Control Week 1+2", "Artemia", "Artemia Water Control Week 3+4", "Dry Food", "Zooplankton Water Control Week 1+2", "Zooplankton", "Zooplankton Water Control Week 3+4"))
colourCount<-length(unique(CH_2_Top10_Taxa_Percent_ENV$Genus))
getPalette<-colorRampPalette(brewer.pal(8, "Set1"))
CH_2_Top10_Taxa_Percent_Graph_ENV<-ggplot(CH_2_Top10_Taxa_Percent_ENV, aes(x=Treatment, y = AVG, fill = Genus)) + geom_bar( colour = "black", stat="identity", position = position_dodge()) + theme_classic() + scale_fill_manual(values = getPalette(colourCount)) + labs(title = "Environmental Samples", subtitle = "Top 10 Bacterial Genera", x = "", y = "Average ASV Abundance") + theme(axis.text.x = element_text(angle = 45, hjust = 1)) + geom_errorbar(aes(ymin=AVG-SE, ymax = AVG+SE), width=.2, position=position_dodge(.9))
CH_2_Top10_Taxa_Percent_Graph_ENV
## Warning: Removed 30 rows containing missing values (geom_errorbar).
#FISH
CH_2_Top10_Taxa_Percent<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Taxa_Graphs/CH_2_Top10_Taxa_FISH_COMBINED.csv", header=TRUE, check.names = FALSE)
CH_2_Top10_Taxa_Percent$Treatment<-factor(CH_2_Top10_Taxa_Percent$Treatment, levels = c("Week 0", "Artemia/Week 1", "Artemia/Week 2", "Artemia/Week 3", "Artemia/Week 4", "Zooplankton/Week 1", "Zooplankton/Week 2", "Zooplankton/Week 3", "Zooplankton/Week 4"))
colourCount<-length(unique(CH_2_Top10_Taxa_Percent$Genus))
getPalette<-colorRampPalette(brewer.pal(8, "Set1"))
CH_2_Top10_Taxa_Percent_Graph<-ggplot(CH_2_Top10_Taxa_Percent, aes(x=Treatment, y = AVG, fill = Genus)) + geom_bar( colour = "black", stat="identity", position = position_dodge()) + theme_classic() + scale_fill_manual(values = getPalette(colourCount)) + labs(title = "Larval Northern Pike Gut Microbiota", subtitle = "Top 10 Bacterial Genera", x = "", y = "Average ASV Abundance") + theme(axis.text.x = element_text(angle = 45, hjust = 1)) + geom_errorbar(aes(ymin=AVG-SE, ymax = AVG+SE), width=.2, position=position_dodge(.9))
CH_2_Top10_Taxa_Percent_Graph
#COMBINE
ggarrange(CH_2_Top10_Taxa_Percent_Graph_ENV, CH_2_Top10_Taxa_Percent_Graph, labels = c("A", "B"), common.legend = TRUE, legend = "right", nrow = 2)
## Warning: Removed 30 rows containing missing values (geom_errorbar).
## Warning: Removed 30 rows containing missing values (geom_errorbar).
Heatmap Clustering (Top 10 Taxa - Normalized):
#NMDS Heatmap
theme_set(theme_bw())
plot_heatmap(CH_2_Diet_Phylo.top10_Norm_C, sample.label = "Treatment", "NMDS", "bray", "Genus", sample.order = "Treatment")
## Warning: Transformation introduced infinite values in discrete y-axis
Heatmap Clustering (Top 10 Taxa - Normalized - No Contamination):
theme_set(theme_bw())
plot_heatmap(CH_2_Diet_Phylo.top10_Norm, sample.label = "Treatment", "NMDS", "bray", "Genus", sample.order = "Treatment")
## Warning: Transformation introduced infinite values in discrete y-axis
otu_table(CH_2_Diet_Phylo_Norm_C)<-otu_table(CH_2_Diet_Phylo_Norm_C)[, -grep("ZOOP", colnames(otu_table(CH_2_Diet_Phylo_Norm_C)))]
otu_table(CH_2_Diet_Phylo_Norm_C)<-otu_table(CH_2_Diet_Phylo_Norm_C)[, -grep("ART", colnames(otu_table(CH_2_Diet_Phylo_Norm_C)))]
otu_table(CH_2_Diet_Phylo_Norm_C)<-otu_table(CH_2_Diet_Phylo_Norm_C)[, -grep("DF", colnames(otu_table(CH_2_Diet_Phylo_Norm_C)))]
sample_data(CH_2_Diet_Phylo_Norm_C)$Treatment<-factor(sample_data(CH_2_Diet_Phylo_Norm_C)$Treatment, levels = c("Week 0", "Artemia/Week 1", "Artemia/Week 2", "Artemia/Week 3", "Artemia/Week 4", "Zooplankton/Week 1", "Zooplankton/Week 2", "Zooplankton/Week 3", "Zooplankton/Week 4"))
CH_2_Diet_Phylo_Alpha_C<-prune_taxa(taxa_sums(CH_2_Diet_Phylo_Norm_C) > 0, CH_2_Diet_Phylo_Norm_C)
plot_richness(CH_2_Diet_Phylo_Alpha_C, x = "Treatment", measures = c("Observed", "Chao1", "Shannon")) + theme_classic() + theme(axis.text.x = element_text(angle = 45, hjust = 1))
## Warning: Removed 222 rows containing missing values (geom_errorbar).
CH_2_Diet_Alpha_C<-estimate_richness(CH_2_Diet_Phylo_Norm_C, split = TRUE, measures = c("Observed", "Chao1", "Shannon"))
CH_2_Diet_Alpha_C$Treatment<-ARTZOOP_ALL_metadata_C$Treatment
CH_2_Diet_Observed_C<-oneway.test(Observed~Treatment, data = CH_2_Diet_Alpha_C)
#Observed
CH_2_Diet_Obs_PH_C<-posthocTGH(y = CH_2_Diet_Alpha_C$Observed, x = CH_2_Diet_Alpha_C$Treatment, method = "games-howell")
CH_2_Diet_Obs_PH_C
## n means variances
## Artemia/Week 1 13 24.1 26.2
## Artemia/Week 2 10 19.9 14.3
## Artemia/Week 3 16 12.9 67.3
## Artemia/Week 4 11 4.5 3.1
## Week 0 3 30.0 25.0
## Zooplankton/Week 1 13 34.9 324.1
## Zooplankton/Week 2 15 17.2 68.7
## Zooplankton/Week 3 19 3.5 2.9
## Zooplankton/Week 4 11 4.3 6.6
##
## diff ci.lo ci.hi t df p
## Artemia/Week 2-Artemia/Week 1 -4.18 -10.6 2.22 2.25 21.0 .41
## Artemia/Week 3-Artemia/Week 1 -11.20 -19.6 -2.77 4.49 25.5 <.01
## Artemia/Week 4-Artemia/Week 1 -19.53 -25.0 -14.10 12.88 15.2 <.01
## Week 0-Artemia/Week 1 5.92 -14.7 26.51 1.84 3.1 .68
## Zooplankton/Week 1-Artemia/Week 1 10.85 -8.0 29.69 2.09 13.9 .52
## Zooplankton/Week 2-Artemia/Week 1 -6.88 -15.6 1.87 2.68 23.7 .21
## Zooplankton/Week 3-Artemia/Week 1 -20.55 -25.9 -15.19 13.94 13.8 <.01
## Zooplankton/Week 4-Artemia/Week 1 -19.80 -25.5 -14.14 12.23 18.3 <.01
## Artemia/Week 3-Artemia/Week 2 -7.02 -15.1 1.09 2.96 22.6 .13
## Artemia/Week 4-Artemia/Week 2 -15.35 -20.2 -10.51 11.74 12.4 <.01
## Week 0-Artemia/Week 2 10.10 -11.8 31.98 3.23 2.7 .29
## Zooplankton/Week 1-Artemia/Week 2 15.02 -3.7 33.79 2.93 13.4 .17
## Zooplankton/Week 2-Artemia/Week 2 -2.70 -11.1 5.75 1.10 20.9 .97
## Zooplankton/Week 3-Artemia/Week 2 -16.37 -21.1 -11.60 13.00 11.0 <.01
## Zooplankton/Week 4-Artemia/Week 2 -15.63 -20.7 -10.54 10.96 15.7 <.01
## Artemia/Week 4-Artemia/Week 3 -8.33 -15.8 -0.85 3.93 16.9 .02
## Week 0-Artemia/Week 3 17.12 -1.0 35.26 4.84 4.4 .06
## Zooplankton/Week 1-Artemia/Week 3 22.05 2.9 41.25 4.08 16.0 .02
## Zooplankton/Week 2-Artemia/Week 3 4.32 -5.6 14.25 1.46 28.8 .86
## Zooplankton/Week 3-Artemia/Week 3 -9.35 -16.8 -1.93 4.48 16.1 .01
## Zooplankton/Week 4-Artemia/Week 3 -8.60 -16.2 -0.97 3.92 19.0 .02
## Week 0-Artemia/Week 4 25.45 -0.6 51.51 8.67 2.1 .05
## Zooplankton/Week 1-Artemia/Week 4 30.38 11.8 49.00 6.05 12.3 <.01
## Zooplankton/Week 2-Artemia/Week 4 12.65 4.8 20.52 5.74 15.7 <.01
## Zooplankton/Week 3-Artemia/Week 4 -1.02 -3.3 1.25 1.55 20.6 .82
## Zooplankton/Week 4-Artemia/Week 4 -0.27 -3.6 3.02 0.29 17.6 1
## Zooplankton/Week 1-Week 0 4.92 -16.3 26.16 0.85 12.8 .99
## Zooplankton/Week 2-Week 0 -12.80 -30.8 5.15 3.56 4.6 .16
## Zooplankton/Week 3-Week 0 -26.47 -53.2 0.25 9.09 2.1 .05
## Zooplankton/Week 4-Week 0 -25.73 -50.3 -1.16 8.61 2.3 .05
## Zooplankton/Week 2-Zooplankton/Week 1 -17.72 -37.0 1.55 3.26 16.3 .08
## Zooplankton/Week 3-Zooplankton/Week 1 -31.40 -50.0 -12.79 6.27 12.1 <.01
## Zooplankton/Week 4-Zooplankton/Week 1 -30.65 -49.3 -11.99 6.07 12.6 <.01
## Zooplankton/Week 3-Zooplankton/Week 2 -13.67 -21.5 -5.86 6.28 14.9 <.01
## Zooplankton/Week 4-Zooplankton/Week 2 -12.93 -20.9 -4.92 5.68 17.5 <.01
## Zooplankton/Week 4-Zooplankton/Week 3 0.75 -2.4 3.86 0.86 15.2 .99
#Chao1
CH_2_Diet_Chao1_PH_C<-posthocTGH(y = CH_2_Diet_Alpha_C$Chao1, x = CH_2_Diet_Alpha_C$Treatment, method = "games-howell")
CH_2_Diet_Chao1_PH_C
## n means variances
## Artemia/Week 1 13 25.7 27.9
## Artemia/Week 2 10 21.7 27.7
## Artemia/Week 3 16 13.9 72.8
## Artemia/Week 4 11 4.8 3.4
## Week 0 3 30.0 25.0
## Zooplankton/Week 1 13 40.3 348.5
## Zooplankton/Week 2 15 19.1 79.4
## Zooplankton/Week 3 19 4.4 8.5
## Zooplankton/Week 4 11 5.5 13.1
##
## diff ci.lo ci.hi t df p
## Artemia/Week 2-Artemia/Week 1 -4.0 -11.68 3.71 1.80 19.6 .68
## Artemia/Week 3-Artemia/Week 1 -11.8 -20.57 -3.06 4.57 25.4 <.01
## Artemia/Week 4-Artemia/Week 1 -20.9 -26.55 -15.32 13.35 15.4 <.01
## Week 0-Artemia/Week 1 4.3 -16.05 24.67 1.33 3.1 .87
## Zooplankton/Week 1-Artemia/Week 1 14.6 -4.97 34.11 2.71 13.9 .23
## Zooplankton/Week 2-Artemia/Week 1 -6.6 -15.93 2.67 2.43 23.2 .31
## Zooplankton/Week 3-Artemia/Week 1 -21.3 -27.02 -15.65 13.25 17.0 <.01
## Zooplankton/Week 4-Artemia/Week 1 -20.2 -26.52 -13.96 11.08 21.2 <.01
## Artemia/Week 3-Artemia/Week 2 -7.8 -17.03 1.36 2.90 24.0 .14
## Artemia/Week 4-Artemia/Week 2 -17.0 -23.59 -10.31 9.66 11.0 <.01
## Week 0-Artemia/Week 2 8.3 -11.24 27.83 2.49 3.5 .43
## Zooplankton/Week 1-Artemia/Week 2 18.6 -1.09 38.20 3.41 14.4 .07
## Zooplankton/Week 2-Artemia/Week 2 -2.6 -12.34 7.06 0.93 22.8 .99
## Zooplankton/Week 3-Artemia/Week 2 -17.3 -24.03 -10.67 9.68 12.0 <.01
## Zooplankton/Week 4-Artemia/Week 2 -16.3 -23.34 -9.16 8.17 15.8 <.01
## Artemia/Week 4-Artemia/Week 3 -9.1 -16.90 -1.34 4.14 17.0 .02
## Week 0-Artemia/Week 3 16.1 -1.82 34.07 4.49 4.6 .07
## Zooplankton/Week 1-Artemia/Week 3 26.4 6.47 46.30 4.71 16.0 .01
## Zooplankton/Week 2-Artemia/Week 3 5.2 -5.32 15.70 1.65 28.7 .77
## Zooplankton/Week 3-Artemia/Week 3 -9.5 -17.35 -1.68 4.26 17.9 .01
## Zooplankton/Week 4-Artemia/Week 3 -8.4 -16.65 -0.20 3.52 21.6 .04
## Week 0-Artemia/Week 4 25.2 -0.64 51.13 8.58 2.2 .05
## Zooplankton/Week 1-Artemia/Week 4 35.5 16.20 54.82 6.82 12.3 <.01
## Zooplankton/Week 2-Artemia/Week 4 14.3 5.86 22.76 6.04 15.6 <.01
## Zooplankton/Week 3-Artemia/Week 4 -0.4 -3.33 2.53 0.46 27.6 1
## Zooplankton/Week 4-Artemia/Week 4 0.7 -3.71 5.10 0.57 14.9 1
## Zooplankton/Week 1-Week 0 10.3 -11.48 32.01 1.73 13.1 .72
## Zooplankton/Week 2-Week 0 -10.9 -28.60 6.73 2.96 5.1 .26
## Zooplankton/Week 3-Week 0 -25.6 -50.87 -0.41 8.65 2.2 .05
## Zooplankton/Week 4-Week 0 -24.5 -47.07 -2.02 7.95 2.6 .04
## Zooplankton/Week 2-Zooplankton/Week 1 -21.2 -41.25 -1.15 3.74 16.7 .03
## Zooplankton/Week 3-Zooplankton/Week 1 -35.9 -55.23 -16.58 6.88 12.4 <.01
## Zooplankton/Week 4-Zooplankton/Week 1 -34.8 -54.22 -15.40 6.58 13.1 <.01
## Zooplankton/Week 3-Zooplankton/Week 2 -14.7 -23.20 -6.21 6.14 16.4 <.01
## Zooplankton/Week 4-Zooplankton/Week 2 -13.6 -22.44 -4.78 5.35 19.6 <.01
## Zooplankton/Week 4-Zooplankton/Week 3 1.1 -3.40 5.59 0.86 17.6 .99
#Shannon
CH_2_Diet_Shannon_PH_C<-posthocTGH(y = CH_2_Diet_Alpha_C$Shannon, x = CH_2_Diet_Alpha_C$Treatment, method = "games-howell")
CH_2_Diet_Shannon_PH_C
## n means variances
## Artemia/Week 1 13 1.513 0.11657
## Artemia/Week 2 10 1.236 0.07832
## Artemia/Week 3 16 0.409 0.18987
## Artemia/Week 4 11 0.469 0.09330
## Week 0 3 1.848 0.02458
## Zooplankton/Week 1 13 1.138 0.33428
## Zooplankton/Week 2 15 0.966 0.02351
## Zooplankton/Week 3 19 0.032 0.01180
## Zooplankton/Week 4 11 0.014 0.00033
##
## diff ci.lo ci.hi t df p
## Artemia/Week 2-Artemia/Week 1 -0.277 -0.724 0.169 2.14 20.9 .47
## Artemia/Week 3-Artemia/Week 1 -1.104 -1.590 -0.618 7.65 27.0 <.01
## Artemia/Week 4-Artemia/Week 1 -1.044 -1.497 -0.591 7.91 21.9 <.01
## Week 0-Artemia/Week 1 0.335 -0.214 0.883 2.55 7.3 .34
## Zooplankton/Week 1-Artemia/Week 1 -0.376 -1.022 0.271 2.02 19.5 .55
## Zooplankton/Week 2-Artemia/Week 1 -0.547 -0.912 -0.183 5.33 16.1 <.01
## Zooplankton/Week 3-Artemia/Week 1 -1.481 -1.838 -1.125 15.13 13.7 <.01
## Zooplankton/Week 4-Artemia/Week 1 -1.499 -1.852 -1.147 15.81 12.1 <.01
## Artemia/Week 3-Artemia/Week 2 -0.827 -1.304 -0.350 5.89 23.9 <.01
## Artemia/Week 4-Artemia/Week 2 -0.767 -1.212 -0.322 6.00 19.0 <.01
## Week 0-Artemia/Week 2 0.612 0.058 1.166 4.83 6.4 .03
## Zooplankton/Week 1-Artemia/Week 2 -0.098 -0.739 0.543 0.54 18.2 1
## Zooplankton/Week 2-Artemia/Week 2 -0.270 -0.628 0.088 2.78 12.6 .21
## Zooplankton/Week 3-Artemia/Week 2 -1.204 -1.555 -0.852 13.09 10.5 <.01
## Zooplankton/Week 4-Artemia/Week 2 -1.222 -1.572 -0.872 13.78 9.1 <.01
## Artemia/Week 4-Artemia/Week 3 0.060 -0.423 0.543 0.42 25.0 1
## Week 0-Artemia/Week 3 1.439 0.884 1.994 10.16 9.4 <.01
## Zooplankton/Week 1-Artemia/Week 3 0.729 0.064 1.393 3.76 21.9 .02
## Zooplankton/Week 2-Artemia/Week 3 0.557 0.153 0.961 4.80 18.9 <.01
## Zooplankton/Week 3-Artemia/Week 3 -0.377 -0.773 0.019 3.37 16.6 .07
## Zooplankton/Week 4-Artemia/Week 3 -0.395 -0.787 -0.004 3.62 15.1 .05
## Week 0-Artemia/Week 4 1.379 0.827 1.931 10.68 6.8 <.01
## Zooplankton/Week 1-Artemia/Week 4 0.669 0.024 1.313 3.62 18.8 .04
## Zooplankton/Week 2-Artemia/Week 4 0.497 0.132 0.862 4.96 13.7 <.01
## Zooplankton/Week 3-Artemia/Week 4 -0.437 -0.795 -0.079 4.58 11.5 .01
## Zooplankton/Week 4-Artemia/Week 4 -0.455 -0.811 -0.099 4.93 10.1 .01
## Zooplankton/Week 1-Week 0 -0.710 -1.387 -0.034 3.86 13.0 .04
## Zooplankton/Week 2-Week 0 -0.882 -1.554 -0.210 8.93 2.8 .02
## Zooplankton/Week 3-Week 0 -1.816 -2.582 -1.050 19.34 2.3 .01
## Zooplankton/Week 4-Week 0 -1.834 -2.695 -0.973 20.22 2.0 .01
## Zooplankton/Week 2-Zooplankton/Week 1 -0.172 -0.775 0.431 1.04 13.5 .97
## Zooplankton/Week 3-Zooplankton/Week 1 -1.106 -1.705 -0.506 6.81 12.6 <.01
## Zooplankton/Week 4-Zooplankton/Week 1 -1.124 -1.721 -0.527 7.00 12.0 <.01
## Zooplankton/Week 3-Zooplankton/Week 2 -0.934 -1.093 -0.775 19.96 24.3 <.01
## Zooplankton/Week 4-Zooplankton/Week 2 -0.952 -1.096 -0.808 23.82 14.5 <.01
## Zooplankton/Week 4-Zooplankton/Week 3 -0.018 -0.107 0.070 0.71 19.7 1
Week0:
Week0_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/Week0_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
Week0_Phylo$Genus<-NULL
Week0_Phylo$Genus<-NULL
Week0_Phylo_m<-as.matrix(Week0_Phylo)
Week0_Phylo<-otu_table(Week0_Phylo_m, taxa_are_rows = TRUE)
Week0_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/Week0_metadata.csv", header = TRUE, check.names = FALSE, row.names=1)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## Week0_metadata.csv'
Week0_metadata<-sample_data(Week0_metadata)
Week0_Phylo<-phyloseq(Week0_Phylo, Week0_metadata)
Week0_rel<-transform(Week0_Phylo, "compositional")
Week0_Prevalence<-prevalence(Week0_rel, detection = 1/100, sort = TRUE)
Week0_Prevalence[1:50]
## Janthinobacterium Methyloversatilis
## 1.0000000 1.0000000
## Undibacterium Chryseobacterium
## 1.0000000 1.0000000
## Acidovorax Pseudomonas
## 1.0000000 1.0000000
## Sphingobacterium Collimonas
## 0.6666667 0.6666667
## Phenylobacterium Novosphingobium
## 0.3333333 0.3333333
## Peptoniphilus Pedobacter
## 0.3333333 0.3333333
## Rhizobacter Herminiimonas
## 0.3333333 0.3333333
## Hydrogenophaga Fluviicola
## 0.3333333 0.3333333
## Flavobacterium Giesbergeria
## 0.3333333 0.0000000
## Deinococcus Cyanobium_PCC-6307
## 0.0000000 0.0000000
## Desulfatiglans Parablastomonas
## 0.0000000 0.0000000
## Pseudoflavitalea Aquincola
## 0.0000000 0.0000000
## Anthococcus Caviibacter
## 0.0000000 0.0000000
## Weeksella Roseococcus
## 0.0000000 0.0000000
## Niveitalea Asaccharospora
## 0.0000000 0.0000000
## Rugamonas Clostridium_sensu_stricto_4
## 0.0000000 0.0000000
## Malikia Paenibacillus
## 0.0000000 0.0000000
## Paludibaculum Cavicella
## 0.0000000 0.0000000
## Lacunisphaera Hypnocyclicus
## 0.0000000 0.0000000
## Rivibacter Clostridium_sensu_stricto_15
## 0.0000000 0.0000000
## Actinomyces Methylocystis
## 0.0000000 0.0000000
## Pseudacidovorax Pararhodospirillum
## 0.0000000 0.0000000
## Arthrobacter Chitinimonas
## 0.0000000 0.0000000
## Salinirepens Holospora
## 0.0000000 0.0000000
## Mycoplana Agathobacter
## 0.0000000 0.0000000
AW1:
ARTW1_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW1_COMBINED.csv", header = TRUE, check.names = FALSE, row.names = 1)
ARTW1_Phylo$Genus<-NULL
ARTW1_Phylo$Genus<-NULL
ARTW1_Phylo_m<-as.matrix(ARTW1_Phylo)
ARTW1_Phylo<-otu_table(ARTW1_Phylo_m, taxa_are_rows = TRUE)
ARTW1_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ARTW1_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ARTW1_Phylo_metadata<-sample_data(ARTW1_Phylo_metadata)
ARTW1_Phylo<-phyloseq(ARTW1_Phylo, ARTW1_Phylo_metadata)
ARTW1_rel<-transform(ARTW1_Phylo, "compositional")
ARTW1_Prevalence<-prevalence(ARTW1_rel, detection = 1/100, sort = TRUE)
ARTW1_Prevalence[1:50]
## Escherichia/Shigella Shewanella
## 1.00000000 1.00000000
## Aeromonas Exiguobacterium
## 1.00000000 0.92307692
## Chryseomicrobium Domibacillus
## 0.84615385 0.76923077
## Enterobacter Pseudomonas
## 0.53846154 0.46153846
## Halomonas Rothia
## 0.30769231 0.07692308
## Microbacterium Cedecea
## 0.07692308 0.07692308
## Paracoccus Giesbergeria
## 0.07692308 0.00000000
## Deinococcus Cyanobium_PCC-6307
## 0.00000000 0.00000000
## Desulfatiglans Parablastomonas
## 0.00000000 0.00000000
## Pseudoflavitalea Aquincola
## 0.00000000 0.00000000
## Anthococcus Caviibacter
## 0.00000000 0.00000000
## Weeksella Roseococcus
## 0.00000000 0.00000000
## Niveitalea Asaccharospora
## 0.00000000 0.00000000
## Rugamonas Clostridium_sensu_stricto_4
## 0.00000000 0.00000000
## Malikia Paenibacillus
## 0.00000000 0.00000000
## Paludibaculum Cavicella
## 0.00000000 0.00000000
## Lacunisphaera Hypnocyclicus
## 0.00000000 0.00000000
## Rivibacter Clostridium_sensu_stricto_15
## 0.00000000 0.00000000
## Actinomyces Methylocystis
## 0.00000000 0.00000000
## Pseudacidovorax Pararhodospirillum
## 0.00000000 0.00000000
## Arthrobacter Chitinimonas
## 0.00000000 0.00000000
## Salinirepens Holospora
## 0.00000000 0.00000000
## Mycoplana Agathobacter
## 0.00000000 0.00000000
## Prevotella_7 Desulforhopalus
## 0.00000000 0.00000000
## CL500-29_marine_group Sandaracinobacter
## 0.00000000 0.00000000
AW2:
ARTW2_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW2_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ARTW2_Phylo$Genus<-NULL
ARTW2_Phylo$Genus<-NULL
ARTW2_Phylo_m<-as.matrix(ARTW2_Phylo)
ARTW2_Phylo<-otu_table(ARTW2_Phylo_m, taxa_are_rows = TRUE)
ARTW2_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ARTW2_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ARTW2_Phylo_metadata<-sample_data(ARTW2_Phylo_metadata)
ARTW2_Phylo<-phyloseq(ARTW2_Phylo, ARTW2_Phylo_metadata)
ARTW2_rel<-transform(ARTW2_Phylo, "compositional")
ARTW2_Prevalence<-prevalence(ARTW2_rel, detection = 1/100, sort = TRUE)
ARTW2_Prevalence[1:50]
## Enterobacter Escherichia/Shigella
## 1.0000000 1.0000000
## Aeromonas Lelliottia
## 1.0000000 1.0000000
## Cedecea Deefgea
## 0.7777778 0.5555556
## Psychrobacter Paracoccus
## 0.4444444 0.4444444
## Acinetobacter Rheinheimera
## 0.1111111 0.1111111
## Pseudomonas Shewanella
## 0.1111111 0.1111111
## Giesbergeria Deinococcus
## 0.0000000 0.0000000
## Cyanobium_PCC-6307 Desulfatiglans
## 0.0000000 0.0000000
## Parablastomonas Pseudoflavitalea
## 0.0000000 0.0000000
## Aquincola Anthococcus
## 0.0000000 0.0000000
## Caviibacter Weeksella
## 0.0000000 0.0000000
## Roseococcus Niveitalea
## 0.0000000 0.0000000
## Asaccharospora Rugamonas
## 0.0000000 0.0000000
## Clostridium_sensu_stricto_4 Malikia
## 0.0000000 0.0000000
## Paenibacillus Paludibaculum
## 0.0000000 0.0000000
## Cavicella Lacunisphaera
## 0.0000000 0.0000000
## Hypnocyclicus Rivibacter
## 0.0000000 0.0000000
## Clostridium_sensu_stricto_15 Actinomyces
## 0.0000000 0.0000000
## Methylocystis Pseudacidovorax
## 0.0000000 0.0000000
## Pararhodospirillum Arthrobacter
## 0.0000000 0.0000000
## Chitinimonas Salinirepens
## 0.0000000 0.0000000
## Holospora Mycoplana
## 0.0000000 0.0000000
## Agathobacter Prevotella_7
## 0.0000000 0.0000000
## Desulforhopalus CL500-29_marine_group
## 0.0000000 0.0000000
## Sandaracinobacter Kinneretia
## 0.0000000 0.0000000
AW3
ARTW3_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW3_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ARTW3_Phylo$Genus<-NULL
ARTW3_Phylo$Genus<-NULL
ARTW3_Phylo_m<-as.matrix(ARTW3_Phylo)
ARTW3_Phylo<-otu_table(ARTW3_Phylo_m, taxa_are_rows = TRUE)
ARTW3_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ARTW3_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ARTW3_Phylo_metadata<-sample_data(ARTW3_Phylo_metadata)
ARTW3_Phylo<-phyloseq(ARTW3_Phylo, ARTW3_Phylo_metadata)
ARTW3_rel<-transform(ARTW3_Phylo, "compositional")
ARTW3_Prevalence<-prevalence(ARTW3_rel, detection = 1/100, sort = TRUE)
ARTW3_Prevalence[1:50]
## Lelliottia Aeromonas
## 1.0000 0.5625
## Photobacterium Raoultella
## 0.1875 0.1250
## Pseudoalteromonas Kluyvera
## 0.0625 0.0625
## Pseudocitrobacter Acinetobacter
## 0.0625 0.0625
## Citrobacter Pseudomonas
## 0.0625 0.0625
## Giesbergeria Deinococcus
## 0.0000 0.0000
## Cyanobium_PCC-6307 Desulfatiglans
## 0.0000 0.0000
## Parablastomonas Pseudoflavitalea
## 0.0000 0.0000
## Aquincola Anthococcus
## 0.0000 0.0000
## Caviibacter Weeksella
## 0.0000 0.0000
## Roseococcus Niveitalea
## 0.0000 0.0000
## Asaccharospora Rugamonas
## 0.0000 0.0000
## Clostridium_sensu_stricto_4 Malikia
## 0.0000 0.0000
## Paenibacillus Paludibaculum
## 0.0000 0.0000
## Cavicella Lacunisphaera
## 0.0000 0.0000
## Hypnocyclicus Rivibacter
## 0.0000 0.0000
## Clostridium_sensu_stricto_15 Actinomyces
## 0.0000 0.0000
## Methylocystis Pseudacidovorax
## 0.0000 0.0000
## Pararhodospirillum Arthrobacter
## 0.0000 0.0000
## Chitinimonas Salinirepens
## 0.0000 0.0000
## Holospora Mycoplana
## 0.0000 0.0000
## Agathobacter Prevotella_7
## 0.0000 0.0000
## Desulforhopalus CL500-29_marine_group
## 0.0000 0.0000
## Sandaracinobacter Kinneretia
## 0.0000 0.0000
## Spongiivirga Atopobium
## 0.0000 0.0000
AW4 (No Contamination)
ARTW4_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW4_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ARTW4_Phylo$Genus<-NULL
ARTW4_Phylo$Genus<-NULL
ARTW4_Phylo_m<-as.matrix(ARTW4_Phylo)
ARTW4_Phylo<-otu_table(ARTW4_Phylo_m, taxa_are_rows = TRUE)
ARTW4_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ARTW4_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## CH_2_ARTW4_Phylo_metadata.csv'
ARTW4_Phylo_metadata<-sample_data(ARTW4_Phylo_metadata)
ARTW4_Phylo<-phyloseq(ARTW4_Phylo, ARTW4_Phylo_metadata)
ARTW4_rel<-transform(ARTW4_Phylo, "compositional")
ARTW4_Prevalence<-prevalence(ARTW4_rel, detection = 1/100, sort = TRUE)
ARTW4_Prevalence[1:50]
## Lelliottia Giesbergeria
## 1 0
## Deinococcus Cyanobium_PCC-6307
## 0 0
## Desulfatiglans Parablastomonas
## 0 0
## Pseudoflavitalea Aquincola
## 0 0
## Anthococcus Caviibacter
## 0 0
## Weeksella Roseococcus
## 0 0
## Niveitalea Asaccharospora
## 0 0
## Rugamonas Clostridium_sensu_stricto_4
## 0 0
## Malikia Paenibacillus
## 0 0
## Paludibaculum Cavicella
## 0 0
## Lacunisphaera Hypnocyclicus
## 0 0
## Rivibacter Clostridium_sensu_stricto_15
## 0 0
## Actinomyces Methylocystis
## 0 0
## Pseudacidovorax Pararhodospirillum
## 0 0
## Arthrobacter Chitinimonas
## 0 0
## Salinirepens Holospora
## 0 0
## Mycoplana Agathobacter
## 0 0
## Prevotella_7 Desulforhopalus
## 0 0
## CL500-29_marine_group Sandaracinobacter
## 0 0
## Kinneretia Spongiivirga
## 0 0
## Atopobium Sandarakinorhabdus
## 0 0
## Candidatus_Methylospira Cellulosilyticum
## 0 0
## Faecalibacterium Methylobacterium
## 0 0
## Ureibacillus Yonghaparkia
## 0 0
## Alkalimonas Lacibacter
## 0 0
AW4 (Contamination)
ARTW4_C_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW4_C_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ARTW4_C_Phylo$Genus<-NULL
ARTW4_C_Phylo$Genus<-NULL
ARTW4_C_Phylo_m<-as.matrix(ARTW4_C_Phylo)
ARTW4_C_Phylo<-otu_table(ARTW4_C_Phylo_m, taxa_are_rows = TRUE)
ARTW4_C_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ARTW4_CONTAM_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ARTW4_C_Phylo_metadata<-sample_data(ARTW4_C_Phylo_metadata)
ARTW4_C_Phylo<-phyloseq(ARTW4_C_Phylo, ARTW4_C_Phylo_metadata)
ARTW4_C_rel<-transform(ARTW4_C_Phylo, "compositional")
ARTW4_C_Prevalence<-prevalence(ARTW4_C_rel, detection = 1/100, sort = TRUE)
ARTW4_C_Prevalence[1:50]
## Lelliottia Plesiomonas
## 1.0000000 0.5714286
## Aeromonas Giesbergeria
## 0.1428571 0.0000000
## Deinococcus Cyanobium_PCC-6307
## 0.0000000 0.0000000
## Desulfatiglans Parablastomonas
## 0.0000000 0.0000000
## Pseudoflavitalea Aquincola
## 0.0000000 0.0000000
## Anthococcus Caviibacter
## 0.0000000 0.0000000
## Weeksella Roseococcus
## 0.0000000 0.0000000
## Niveitalea Asaccharospora
## 0.0000000 0.0000000
## Rugamonas Clostridium_sensu_stricto_4
## 0.0000000 0.0000000
## Malikia Paenibacillus
## 0.0000000 0.0000000
## Paludibaculum Cavicella
## 0.0000000 0.0000000
## Lacunisphaera Hypnocyclicus
## 0.0000000 0.0000000
## Rivibacter Clostridium_sensu_stricto_15
## 0.0000000 0.0000000
## Actinomyces Methylocystis
## 0.0000000 0.0000000
## Pseudacidovorax Pararhodospirillum
## 0.0000000 0.0000000
## Arthrobacter Chitinimonas
## 0.0000000 0.0000000
## Salinirepens Holospora
## 0.0000000 0.0000000
## Mycoplana Agathobacter
## 0.0000000 0.0000000
## Prevotella_7 Desulforhopalus
## 0.0000000 0.0000000
## CL500-29_marine_group Sandaracinobacter
## 0.0000000 0.0000000
## Kinneretia Spongiivirga
## 0.0000000 0.0000000
## Atopobium Sandarakinorhabdus
## 0.0000000 0.0000000
## Candidatus_Methylospira Cellulosilyticum
## 0.0000000 0.0000000
## Faecalibacterium Methylobacterium
## 0.0000000 0.0000000
## Ureibacillus Yonghaparkia
## 0.0000000 0.0000000
Artemia Graphs
#Calculate % ASV Abundance from Core microbiota using .csv files (...PHYLO.csv). PHYLO_MERGE files combine ASVs with same genus denmarcation. SD + SE also calculated
getPalette<-colorRampPalette(brewer.pal(8, "Set1"))
Week0_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/Week0_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
Week0_Log2_Graph<-ggplot(data = Week0_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Week 0 Fish", y = "ASV Abundance (%)", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,60) + scale_fill_manual(values = c(getPalette(10)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ARTW1_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW1_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
ARTW1_Log2_Graph<-ggplot(data = ARTW1_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Artemia Week 1", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,60) + scale_fill_manual(values = c(getPalette(7)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ARTW2_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW2_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
ARTW2_Log2_Graph<-ggplot(data = ARTW2_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Artemia Week 2", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,80)+ scale_fill_manual(values = c(getPalette(10)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ARTW3_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW3_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ARTW3_COMBINED_Log2.csv'
ARTW3_Log2_Graph<-ggplot(data = ARTW3_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Artemia Week 3", y = "ASV Abundance (%)", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,100)+ scale_fill_manual(values = c(getPalette(5)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ARTW4_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW4_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ARTW4_COMBINED_Log2.csv'
ARTW4_Log2_Graph<-ggplot(data = ARTW4_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Artemia Week 4", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,100)+ scale_fill_manual(values = c(getPalette(5))) + theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ARTW4_CONTAM_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW4_C_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ARTW4_C_COMBINED_Log2.csv'
ARTW4_CONTAM_Log2_Graph<-ggplot(data = ARTW4_CONTAM_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Artemia Week 4 (Contamination)", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,100)+ scale_fill_manual(values = c(getPalette(5))) + theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ART_CORE_FINAL<-ggarrange(Week0_Log2_Graph, ARTW1_Log2_Graph, ARTW2_Log2_Graph, ARTW3_Log2_Graph, ARTW4_Log2_Graph, labels = c("A", "B", "C", "D", "E"), common.legend = FALSE, legend = "right")
ART_CORE_CONTAM_FINAL<-ggarrange(Week0_Log2_Graph, ARTW1_Log2_Graph, ARTW2_Log2_Graph, ARTW3_Log2_Graph, ARTW4_CONTAM_Log2_Graph, labels = c("A", "B", "C", "D", "E"), common.legend = FALSE, legend = "right")
Z1
ZOOPW1_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW1_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ZOOPW1_Phylo$Genus<-NULL
ZOOPW1_Phylo$Genus<-NULL
ZOOPW1_Phylo_m<-as.matrix(ZOOPW1_Phylo)
ZOOPW1_Phylo<-otu_table(ZOOPW1_Phylo_m, taxa_are_rows = TRUE)
ZOOPW1_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ZOOPW1_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ZOOPW1_Phylo_metadata<-sample_data(ZOOPW1_Phylo_metadata)
ZOOPW1_Phylo<-phyloseq(ZOOPW1_Phylo, ZOOPW1_Phylo_metadata)
ZOOPW1_rel<-transform(ZOOPW1_Phylo, "compositional")
ZOOPW1_Prevalence<-prevalence(ZOOPW1_rel, detection = 1/100, sort = TRUE)
ZOOPW1_Prevalence[1:50]
## Aeromonas Deefgea
## 1.00000000 0.92307692
## Clostridium_sensu_stricto_1 Flavobacterium
## 0.61538462 0.46153846
## Shewanella Rheinheimera
## 0.46153846 0.30769231
## Paracoccus Acinetobacter
## 0.23076923 0.15384615
## Pseudorhodobacter Apibacter
## 0.07692308 0.07692308
## Rhodoferax Gemmobacter
## 0.07692308 0.07692308
## Shinella Hydrogenophaga
## 0.07692308 0.07692308
## Fluviicola Methylomonas
## 0.07692308 0.07692308
## Romboutsia Emticicia
## 0.07692308 0.07692308
## Limnohabitans Psychrobacter
## 0.07692308 0.07692308
## Chryseobacterium Sphaerotilus
## 0.07692308 0.07692308
## Enterobacter Escherichia/Shigella
## 0.07692308 0.07692308
## Lelliottia Giesbergeria
## 0.07692308 0.00000000
## Deinococcus Cyanobium_PCC-6307
## 0.00000000 0.00000000
## Desulfatiglans Parablastomonas
## 0.00000000 0.00000000
## Pseudoflavitalea Aquincola
## 0.00000000 0.00000000
## Anthococcus Caviibacter
## 0.00000000 0.00000000
## Weeksella Roseococcus
## 0.00000000 0.00000000
## Niveitalea Asaccharospora
## 0.00000000 0.00000000
## Rugamonas Clostridium_sensu_stricto_4
## 0.00000000 0.00000000
## Malikia Paenibacillus
## 0.00000000 0.00000000
## Paludibaculum Cavicella
## 0.00000000 0.00000000
## Lacunisphaera Hypnocyclicus
## 0.00000000 0.00000000
## Rivibacter Clostridium_sensu_stricto_15
## 0.00000000 0.00000000
## Actinomyces Methylocystis
## 0.00000000 0.00000000
Z2
ZOOPW2_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW2_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ZOOPW2_Phylo$Genus<-NULL
ZOOPW2_Phylo$Genus<-NULL
ZOOPW2_Phylo_m<-as.matrix(ZOOPW2_Phylo)
ZOOPW2_Phylo<-otu_table(ZOOPW2_Phylo_m, taxa_are_rows = TRUE)
ZOOPW2_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ZOOPW2_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ZOOPW2_Phylo_metadata<-sample_data(ZOOPW2_Phylo_metadata)
ZOOPW2_Phylo<-phyloseq(ZOOPW2_Phylo, ZOOPW2_Phylo_metadata)
ZOOPW2_rel<-transform(ZOOPW2_Phylo, "compositional")
ZOOPW2_Prevalence<-prevalence(ZOOPW2_rel, detection = 1/100, sort = TRUE)
ZOOPW2_Prevalence[1:50]
## Shewanella Aeromonas
## 1.00000000 1.00000000
## Deefgea Clostridium_sensu_stricto_1
## 0.86666667 0.80000000
## Plesiomonas Acinetobacter
## 0.26666667 0.13333333
## Cloacibacterium Giesbergeria
## 0.06666667 0.00000000
## Deinococcus Cyanobium_PCC-6307
## 0.00000000 0.00000000
## Desulfatiglans Parablastomonas
## 0.00000000 0.00000000
## Pseudoflavitalea Aquincola
## 0.00000000 0.00000000
## Anthococcus Caviibacter
## 0.00000000 0.00000000
## Weeksella Roseococcus
## 0.00000000 0.00000000
## Niveitalea Asaccharospora
## 0.00000000 0.00000000
## Rugamonas Clostridium_sensu_stricto_4
## 0.00000000 0.00000000
## Malikia Paenibacillus
## 0.00000000 0.00000000
## Paludibaculum Cavicella
## 0.00000000 0.00000000
## Lacunisphaera Hypnocyclicus
## 0.00000000 0.00000000
## Rivibacter Clostridium_sensu_stricto_15
## 0.00000000 0.00000000
## Actinomyces Methylocystis
## 0.00000000 0.00000000
## Pseudacidovorax Pararhodospirillum
## 0.00000000 0.00000000
## Arthrobacter Chitinimonas
## 0.00000000 0.00000000
## Salinirepens Holospora
## 0.00000000 0.00000000
## Mycoplana Agathobacter
## 0.00000000 0.00000000
## Prevotella_7 Desulforhopalus
## 0.00000000 0.00000000
## CL500-29_marine_group Sandaracinobacter
## 0.00000000 0.00000000
## Kinneretia Spongiivirga
## 0.00000000 0.00000000
## Atopobium Sandarakinorhabdus
## 0.00000000 0.00000000
## Candidatus_Methylospira Cellulosilyticum
## 0.00000000 0.00000000
Z3
ZOOPW3_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW3_COMBINED.csv", header = TRUE, check.names = FALSE, row.names=1)
ZOOPW3_Phylo$Genus<-NULL
ZOOPW3_Phylo$Genus<-NULL
ZOOPW3_Phylo_m<-as.matrix(ZOOPW3_Phylo)
ZOOPW3_Phylo<-otu_table(ZOOPW3_Phylo_m, taxa_are_rows = TRUE)
ZOOPW3_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ZOOPW3_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ZOOPW3_Phylo_metadata<-sample_data(ZOOPW3_Phylo_metadata)
ZOOPW3_Phylo<-phyloseq(ZOOPW3_Phylo, ZOOPW3_Phylo_metadata)
ZOOPW3_rel<-transform(ZOOPW3_Phylo, "compositional")
ZOOPW3_Prevalence<-prevalence(ZOOPW3_rel, detection = 1/100, sort = TRUE)
ZOOPW3_Prevalence[1:50]
## Plesiomonas Aeromonas
## 1.00000000 0.05263158
## Giesbergeria Deinococcus
## 0.00000000 0.00000000
## Cyanobium_PCC-6307 Desulfatiglans
## 0.00000000 0.00000000
## Parablastomonas Pseudoflavitalea
## 0.00000000 0.00000000
## Aquincola Anthococcus
## 0.00000000 0.00000000
## Caviibacter Weeksella
## 0.00000000 0.00000000
## Roseococcus Niveitalea
## 0.00000000 0.00000000
## Asaccharospora Rugamonas
## 0.00000000 0.00000000
## Clostridium_sensu_stricto_4 Malikia
## 0.00000000 0.00000000
## Paenibacillus Paludibaculum
## 0.00000000 0.00000000
## Cavicella Lacunisphaera
## 0.00000000 0.00000000
## Hypnocyclicus Rivibacter
## 0.00000000 0.00000000
## Clostridium_sensu_stricto_15 Actinomyces
## 0.00000000 0.00000000
## Methylocystis Pseudacidovorax
## 0.00000000 0.00000000
## Pararhodospirillum Arthrobacter
## 0.00000000 0.00000000
## Chitinimonas Salinirepens
## 0.00000000 0.00000000
## Holospora Mycoplana
## 0.00000000 0.00000000
## Agathobacter Prevotella_7
## 0.00000000 0.00000000
## Desulforhopalus CL500-29_marine_group
## 0.00000000 0.00000000
## Sandaracinobacter Kinneretia
## 0.00000000 0.00000000
## Spongiivirga Atopobium
## 0.00000000 0.00000000
## Sandarakinorhabdus Candidatus_Methylospira
## 0.00000000 0.00000000
## Cellulosilyticum Faecalibacterium
## 0.00000000 0.00000000
## Methylobacterium Ureibacillus
## 0.00000000 0.00000000
## Yonghaparkia Alkalimonas
## 0.00000000 0.00000000
Z4
ZOOPW4_Phylo<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW4_COMBINED.csv", header = TRUE, check.names = FALSE, row.names = 1)
ZOOPW4_Phylo$Genus<-NULL
ZOOPW4_Phylo$Genus<-NULL
ZOOPW4_Phylo_m<-as.matrix(ZOOPW4_Phylo)
ZOOPW4_Phylo<-otu_table(ZOOPW4_Phylo_m, taxa_are_rows = TRUE)
ZOOPW4_Phylo_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_ZOOPW4_Phylo_metadata.csv", header = TRUE, check.names = FALSE, row.names = 1)
ZOOPW4_Phylo_metadata<-sample_data(ZOOPW4_Phylo_metadata)
ZOOPW4_Phylo<-phyloseq(ZOOPW4_Phylo, ZOOPW4_Phylo_metadata)
ZOOPW4_rel<-transform(ZOOPW4_Phylo, "compositional")
ZOOPW4_Prevalence<-prevalence(ZOOPW4_rel, detection = 1/100, sort = TRUE)
ZOOPW4_Prevalence[1:50]
## Plesiomonas Giesbergeria
## 1 0
## Deinococcus Cyanobium_PCC-6307
## 0 0
## Desulfatiglans Parablastomonas
## 0 0
## Pseudoflavitalea Aquincola
## 0 0
## Anthococcus Caviibacter
## 0 0
## Weeksella Roseococcus
## 0 0
## Niveitalea Asaccharospora
## 0 0
## Rugamonas Clostridium_sensu_stricto_4
## 0 0
## Malikia Paenibacillus
## 0 0
## Paludibaculum Cavicella
## 0 0
## Lacunisphaera Hypnocyclicus
## 0 0
## Rivibacter Clostridium_sensu_stricto_15
## 0 0
## Actinomyces Methylocystis
## 0 0
## Pseudacidovorax Pararhodospirillum
## 0 0
## Arthrobacter Chitinimonas
## 0 0
## Salinirepens Holospora
## 0 0
## Mycoplana Agathobacter
## 0 0
## Prevotella_7 Desulforhopalus
## 0 0
## CL500-29_marine_group Sandaracinobacter
## 0 0
## Kinneretia Spongiivirga
## 0 0
## Atopobium Sandarakinorhabdus
## 0 0
## Candidatus_Methylospira Cellulosilyticum
## 0 0
## Faecalibacterium Methylobacterium
## 0 0
## Ureibacillus Yonghaparkia
## 0 0
## Alkalimonas Lacibacter
## 0 0
Zooplankton Graphs
ZOOPW1_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW1_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ZOOPW1_COMBINED_Log2.csv'
ZOOPW1_Log2_Graph<-ggplot(data = ZOOPW1_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Zooplankton Week 1", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,80) + scale_fill_manual(values = c(getPalette(10)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ZOOPW2_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW2_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ZOOPW2_COMBINED_Log2.csv'
ZOOPW2_Log2_Graph<-ggplot(data = ZOOPW2_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Zooplankton Week 2", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,80)+ scale_fill_manual(values = c(getPalette(10)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ZOOPW3_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW3_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ZOOPW3_COMBINED_Log2.csv'
ZOOPW3_Log2_Graph<-ggplot(data = ZOOPW3_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Zooplankton Week 3", y = "ASV Abundance (%)", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,100)+ scale_fill_manual(values = c(getPalette(10)))+ theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ZOOPW4_Log2<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW4_COMBINED_Log2.csv", header = TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ZOOPW4_COMBINED_Log2.csv'
ZOOPW4_Log2_Graph<-ggplot(data = ZOOPW4_Log2, aes(x = Treatment, y = AVG, fill = Genus)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs(subtitle = "Zooplankton Week 4", y = "", x="") + geom_errorbar(aes(ymin=AVG-SE, ymax=AVG+SE), width=.2, position=position_dodge(.9)) + theme_classic() + ylim(0,100)+ scale_fill_manual(values = c(getPalette(10))) + theme(axis.text.x = element_blank()) + theme(axis.ticks.x = element_blank())
ZOOP_CORE_FINAL<-ggarrange(Week0_Log2_Graph, ZOOPW1_Log2_Graph, ZOOPW2_Log2_Graph, ZOOPW3_Log2_Graph, ZOOPW4_Log2_Graph, labels = c("A", "B", "C", "D", "E"), common.legend = FALSE, legend = "right")
Determining significant effects on Core bacteria abundances between locations: ALL(No contamination)
CH_2_Fish_core_NC<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/ASV_Combined_CH_2_NORMAL.csv", header=TRUE, check.names=FALSE, row.names = 1)
CH_2_Fish_core_NC<-as.matrix(CH_2_Fish_core_NC)
CH_2_Fish_core_NC_otu<-otu_table(CH_2_Fish_core_NC, taxa_are_rows = TRUE)
CH_2_Fish_core_NC_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_Fish_Metadata.csv", header=TRUE, check.names=FALSE, row.names = 1)
CH_2_Fish_core_NC_metadata<-sample_data(CH_2_Fish_core_NC_metadata)
CH_2_Fish_core_NC_Phylo<-phyloseq(CH_2_Fish_core_NC_otu,CH_2_taxa_Phylo_C, CH_2_Fish_core_NC_metadata)
CH_2_FishCore_NC_melt_transform<-transform_sample_counts(CH_2_Fish_core_NC_Phylo, function(CH_2_Fish_core_NC_otu) CH_2_Fish_core_NC_otu/sum(CH_2_Fish_core_NC_otu))
CH_2_FishCore_melted_NC<-psmelt(CH_2_FishCore_NC_melt_transform)
CH_2_FishCore_melted_NC_cut<-subset(CH_2_FishCore_melted_NC, Genus == "Acidovorax" | Genus == "Chryseobacterium" | Genus =="Collimonas" | Genus == "Janthinobacterium" | Genus == "Methyloversatilis" | Genus == "Pseudomonas" | Genus =="Sphingobacterium" | Genus == "Undibacterium" | Genus == "Aeromonas"| Genus == "Clostridium_sensu_stricto_1" | Genus == "Deefgea" | Genus == "Shewanella" | Genus == "Plesiomonas" | Genus == "Chryseomicrobium" | Genus == "Domibacillus"| Genus == "Enterobacter" | Genus == "Escherichia/Shigella" | Genus == "Exiguobacterium" | Genus == "Cedecea" | Genus == "Lelliottia")
CH_2_FishCore_melted_NC_cut<-CH_2_FishCore_melted_NC_cut[order(CH_2_FishCore_melted_NC_cut$Sample, CH_2_FishCore_melted_NC_cut$Genus),]
write.csv(CH_2_FishCore_melted_NC_cut, "CH_2_FishCore_melted_NC_cut.csv")
CH_2_FishCore_melted_NC_cut<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_FishCore_melted_NC_cut.csv", header=TRUE, check.names = FALSE)
#Offloading/Reloading data removes extraneous factors in `Genus` column which will produce an error when running the beta regression function below
#Note when offloading data change the values = 1 to 0.9999999 (beta distribution can't deal with values at exactly 1)
#Determine Fit of Distribution
hist(CH_2_FishCore_melted_NC_cut$Abundance)
#Based on numbers being between 0-1, we tried beta distribution
CH_2_FishCore_melted_NC_cut_Abundance<-CH_2_FishCore_melted_NC_cut$Abundance
CH_2_FishCore_melted_NC_cut_Abundance_scaled<-(CH_2_FishCore_melted_NC_cut_Abundance-min(CH_2_FishCore_melted_NC_cut_Abundance) + 0.000001/max(CH_2_FishCore_melted_NC_cut_Abundance) + 0.000002)
#Note 0.00000001 and 0.00000002 are needed to fit beta distribution given the functions default log fit
CH_2_FishCore_melted_NC_fitbeta<-fitdist(CH_2_FishCore_melted_NC_cut_Abundance_scaled, "beta")
CH_2_FishCore_melted_NC_fitbeta
## Fitting of the distribution ' beta ' by maximum likelihood
## Parameters:
## estimate Std. Error
## shape1 0.09473947 0.002196232
## shape2 0.83821821 0.041000357
cdfcomp(CH_2_FishCore_melted_NC_fitbeta, legendtext = "beta")
#Fit looks good - so now time to plot the beta-transformed distribution
betareg.control(maxit = 10000)
## $phi
## [1] TRUE
##
## $method
## [1] "BFGS"
##
## $maxit
## [1] 10000
##
## $hessian
## [1] FALSE
##
## $trace
## [1] FALSE
##
## $start
## NULL
##
## $fsmaxit
## [1] 200
##
## $fstol
## [1] 1e-08
##
## $fnscale
## [1] -1
##
## $reltol
## [1] 9.02333e-14
CH_2_FishCore_melted_NC_dist<-betareg(CH_2_FishCore_melted_NC_cut_Abundance_scaled ~ Treatment*Genus, data=CH_2_FishCore_melted_NC_cut)
## Warning in betareg.fit(X, Y, Z, weights, offset, link, link.phi, type,
## control): optimization failed to converge
summary(CH_2_FishCore_melted_NC_dist)
##
## Call:
## betareg(formula = CH_2_FishCore_melted_NC_cut_Abundance_scaled ~
## Treatment * Genus, data = CH_2_FishCore_melted_NC_cut)
##
## model did not converge
Anova(CH_2_FishCore_melted_NC_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_FishCore_melted_NC_cut_Abundance_scaled
## Df Chisq Pr(>Chisq)
## (Intercept) 1 298.33 < 2.2e-16 ***
## Treatment 8 112.44 < 2.2e-16 ***
## Genus 19 813.40 < 2.2e-16 ***
## Treatment:Genus 152 11275.21 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Proc_marginal<-emmeans(CH_2_FishCore_melted_NC_dist, ~ Treatment*Genus)
pairs(Proc_marginal, adjust = "tukey")
## contrast
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Acidovorax
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Acidovorax
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Acidovorax
## Artemia/Week 1,Acidovorax - Week 0,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 1,Acidovorax - Week 0,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 1,Acidovorax - Week 0,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 1,Acidovorax - Week 0,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 1,Acidovorax - Week 0,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Acidovorax - Week 0,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Acidovorax - Week 0,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Acidovorax - Week 0,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 1,Acidovorax - Week 0,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Acidovorax - Week 0,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Acidovorax
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Acidovorax
## Artemia/Week 2,Acidovorax - Week 0,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 2,Acidovorax - Week 0,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 2,Acidovorax - Week 0,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 2,Acidovorax - Week 0,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 2,Acidovorax - Week 0,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Acidovorax - Week 0,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Acidovorax - Week 0,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Acidovorax - Week 0,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 2,Acidovorax - Week 0,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Acidovorax - Week 0,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Acidovorax
## Artemia/Week 3,Acidovorax - Week 0,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 3,Acidovorax - Week 0,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 3,Acidovorax - Week 0,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 3,Acidovorax - Week 0,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 3,Acidovorax - Week 0,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Acidovorax - Week 0,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Acidovorax - Week 0,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Acidovorax - Week 0,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 3,Acidovorax - Week 0,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Acidovorax - Week 0,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Acidovorax - Week 0,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 4,Acidovorax - Week 0,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 4,Acidovorax - Week 0,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 4,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 4,Acidovorax - Week 0,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 4,Acidovorax - Week 0,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Acidovorax - Week 0,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Acidovorax - Week 0,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Acidovorax - Week 0,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 4,Acidovorax - Week 0,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Acidovorax - Week 0,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Acidovorax
## Week 0,Acidovorax - Zooplankton/Week 2,Acidovorax
## Week 0,Acidovorax - Zooplankton/Week 3,Acidovorax
## Week 0,Acidovorax - Zooplankton/Week 4,Acidovorax
## Week 0,Acidovorax - Artemia/Week 1,Aeromonas
## Week 0,Acidovorax - Artemia/Week 2,Aeromonas
## Week 0,Acidovorax - Artemia/Week 3,Aeromonas
## Week 0,Acidovorax - Artemia/Week 4,Aeromonas
## Week 0,Acidovorax - Week 0,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 1,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 2,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 3,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 4,Aeromonas
## Week 0,Acidovorax - Artemia/Week 1,Cedecea
## Week 0,Acidovorax - Artemia/Week 2,Cedecea
## Week 0,Acidovorax - Artemia/Week 3,Cedecea
## Week 0,Acidovorax - Artemia/Week 4,Cedecea
## Week 0,Acidovorax - Week 0,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 1,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 2,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 3,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 4,Cedecea
## Week 0,Acidovorax - Artemia/Week 1,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 2,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 3,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 4,Chryseobacterium
## Week 0,Acidovorax - Week 0,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Week 0,Acidovorax - Week 0,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 1,Collimonas
## Week 0,Acidovorax - Artemia/Week 2,Collimonas
## Week 0,Acidovorax - Artemia/Week 3,Collimonas
## Week 0,Acidovorax - Artemia/Week 4,Collimonas
## Week 0,Acidovorax - Week 0,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 1,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 2,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 3,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 4,Collimonas
## Week 0,Acidovorax - Artemia/Week 1,Deefgea
## Week 0,Acidovorax - Artemia/Week 2,Deefgea
## Week 0,Acidovorax - Artemia/Week 3,Deefgea
## Week 0,Acidovorax - Artemia/Week 4,Deefgea
## Week 0,Acidovorax - Week 0,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 1,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 2,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 3,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 4,Deefgea
## Week 0,Acidovorax - Artemia/Week 1,Domibacillus
## Week 0,Acidovorax - Artemia/Week 2,Domibacillus
## Week 0,Acidovorax - Artemia/Week 3,Domibacillus
## Week 0,Acidovorax - Artemia/Week 4,Domibacillus
## Week 0,Acidovorax - Week 0,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 1,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 2,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 3,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 4,Domibacillus
## Week 0,Acidovorax - Artemia/Week 1,Enterobacter
## Week 0,Acidovorax - Artemia/Week 2,Enterobacter
## Week 0,Acidovorax - Artemia/Week 3,Enterobacter
## Week 0,Acidovorax - Artemia/Week 4,Enterobacter
## Week 0,Acidovorax - Week 0,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 1,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 2,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 3,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 4,Enterobacter
## Week 0,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Week 0,Acidovorax - Week 0,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 1,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 2,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 3,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 4,Exiguobacterium
## Week 0,Acidovorax - Week 0,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 1,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 2,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 3,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 4,Janthinobacterium
## Week 0,Acidovorax - Week 0,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 1,Lelliottia
## Week 0,Acidovorax - Artemia/Week 2,Lelliottia
## Week 0,Acidovorax - Artemia/Week 3,Lelliottia
## Week 0,Acidovorax - Artemia/Week 4,Lelliottia
## Week 0,Acidovorax - Week 0,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 1,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 2,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 3,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 4,Lelliottia
## Week 0,Acidovorax - Artemia/Week 1,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 2,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 3,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 4,Methyloversatilis
## Week 0,Acidovorax - Week 0,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 1,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 2,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 3,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 4,Plesiomonas
## Week 0,Acidovorax - Week 0,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 1,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 2,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 3,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 4,Pseudomonas
## Week 0,Acidovorax - Week 0,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 1,Shewanella
## Week 0,Acidovorax - Artemia/Week 2,Shewanella
## Week 0,Acidovorax - Artemia/Week 3,Shewanella
## Week 0,Acidovorax - Artemia/Week 4,Shewanella
## Week 0,Acidovorax - Week 0,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 1,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 2,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 3,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 4,Shewanella
## Week 0,Acidovorax - Artemia/Week 1,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 2,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 3,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 4,Sphingobacterium
## Week 0,Acidovorax - Week 0,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 1,Undibacterium
## Week 0,Acidovorax - Artemia/Week 2,Undibacterium
## Week 0,Acidovorax - Artemia/Week 3,Undibacterium
## Week 0,Acidovorax - Artemia/Week 4,Undibacterium
## Week 0,Acidovorax - Week 0,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Acidovorax
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Acidovorax
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Acidovorax
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 1,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 1,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Acidovorax
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Acidovorax
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 2,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 2,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Acidovorax
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 3,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 3,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 4,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 4,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Aeromonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Aeromonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Aeromonas
## Artemia/Week 1,Aeromonas - Week 0,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 1,Aeromonas - Week 0,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 1,Aeromonas - Week 0,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 1,Aeromonas - Week 0,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Aeromonas - Week 0,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Aeromonas - Week 0,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Aeromonas - Week 0,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Aeromonas - Week 0,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Aeromonas - Week 0,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Aeromonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Aeromonas
## Artemia/Week 2,Aeromonas - Week 0,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 2,Aeromonas - Week 0,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 2,Aeromonas - Week 0,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 2,Aeromonas - Week 0,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Aeromonas - Week 0,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Aeromonas - Week 0,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Aeromonas - Week 0,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Aeromonas - Week 0,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Aeromonas - Week 0,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Aeromonas
## Artemia/Week 3,Aeromonas - Week 0,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 3,Aeromonas - Week 0,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 3,Aeromonas - Week 0,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 3,Aeromonas - Week 0,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Aeromonas - Week 0,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Aeromonas - Week 0,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Aeromonas - Week 0,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Aeromonas - Week 0,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Aeromonas - Week 0,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Aeromonas - Week 0,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 4,Aeromonas - Week 0,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 4,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 4,Aeromonas - Week 0,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 4,Aeromonas - Week 0,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Aeromonas - Week 0,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Aeromonas - Week 0,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Aeromonas - Week 0,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Aeromonas - Week 0,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Aeromonas - Week 0,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Aeromonas
## Week 0,Aeromonas - Zooplankton/Week 2,Aeromonas
## Week 0,Aeromonas - Zooplankton/Week 3,Aeromonas
## Week 0,Aeromonas - Zooplankton/Week 4,Aeromonas
## Week 0,Aeromonas - Artemia/Week 1,Cedecea
## Week 0,Aeromonas - Artemia/Week 2,Cedecea
## Week 0,Aeromonas - Artemia/Week 3,Cedecea
## Week 0,Aeromonas - Artemia/Week 4,Cedecea
## Week 0,Aeromonas - Week 0,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 1,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 2,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 3,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 4,Cedecea
## Week 0,Aeromonas - Artemia/Week 1,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 2,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 3,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 4,Chryseobacterium
## Week 0,Aeromonas - Week 0,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Week 0,Aeromonas - Week 0,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 1,Collimonas
## Week 0,Aeromonas - Artemia/Week 2,Collimonas
## Week 0,Aeromonas - Artemia/Week 3,Collimonas
## Week 0,Aeromonas - Artemia/Week 4,Collimonas
## Week 0,Aeromonas - Week 0,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 1,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 2,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 3,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 4,Collimonas
## Week 0,Aeromonas - Artemia/Week 1,Deefgea
## Week 0,Aeromonas - Artemia/Week 2,Deefgea
## Week 0,Aeromonas - Artemia/Week 3,Deefgea
## Week 0,Aeromonas - Artemia/Week 4,Deefgea
## Week 0,Aeromonas - Week 0,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 1,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 2,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 3,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 4,Deefgea
## Week 0,Aeromonas - Artemia/Week 1,Domibacillus
## Week 0,Aeromonas - Artemia/Week 2,Domibacillus
## Week 0,Aeromonas - Artemia/Week 3,Domibacillus
## Week 0,Aeromonas - Artemia/Week 4,Domibacillus
## Week 0,Aeromonas - Week 0,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 1,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 2,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 3,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 4,Domibacillus
## Week 0,Aeromonas - Artemia/Week 1,Enterobacter
## Week 0,Aeromonas - Artemia/Week 2,Enterobacter
## Week 0,Aeromonas - Artemia/Week 3,Enterobacter
## Week 0,Aeromonas - Artemia/Week 4,Enterobacter
## Week 0,Aeromonas - Week 0,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 1,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 2,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 3,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 4,Enterobacter
## Week 0,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Week 0,Aeromonas - Week 0,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 1,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 2,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 3,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 4,Exiguobacterium
## Week 0,Aeromonas - Week 0,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 1,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 2,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 3,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 4,Janthinobacterium
## Week 0,Aeromonas - Week 0,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 1,Lelliottia
## Week 0,Aeromonas - Artemia/Week 2,Lelliottia
## Week 0,Aeromonas - Artemia/Week 3,Lelliottia
## Week 0,Aeromonas - Artemia/Week 4,Lelliottia
## Week 0,Aeromonas - Week 0,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 1,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 2,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 3,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 4,Lelliottia
## Week 0,Aeromonas - Artemia/Week 1,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 2,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 3,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 4,Methyloversatilis
## Week 0,Aeromonas - Week 0,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 1,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 2,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 3,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 4,Plesiomonas
## Week 0,Aeromonas - Week 0,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 1,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 2,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 3,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 4,Pseudomonas
## Week 0,Aeromonas - Week 0,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 1,Shewanella
## Week 0,Aeromonas - Artemia/Week 2,Shewanella
## Week 0,Aeromonas - Artemia/Week 3,Shewanella
## Week 0,Aeromonas - Artemia/Week 4,Shewanella
## Week 0,Aeromonas - Week 0,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 1,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 2,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 3,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 4,Shewanella
## Week 0,Aeromonas - Artemia/Week 1,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 2,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 3,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 4,Sphingobacterium
## Week 0,Aeromonas - Week 0,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 1,Undibacterium
## Week 0,Aeromonas - Artemia/Week 2,Undibacterium
## Week 0,Aeromonas - Artemia/Week 3,Undibacterium
## Week 0,Aeromonas - Artemia/Week 4,Undibacterium
## Week 0,Aeromonas - Week 0,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 1,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 2,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 3,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 4,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Cedecea
## Artemia/Week 1,Cedecea - Artemia/Week 3,Cedecea
## Artemia/Week 1,Cedecea - Artemia/Week 4,Cedecea
## Artemia/Week 1,Cedecea - Week 0,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 1,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 1,Cedecea - Week 0,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 1,Cedecea - Week 0,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Cedecea - Week 0,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Cedecea - Week 0,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Cedecea - Week 0,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Cedecea - Week 0,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Cedecea - Week 0,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 1,Cedecea - Week 0,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Cedecea - Week 0,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Cedecea
## Artemia/Week 2,Cedecea - Artemia/Week 4,Cedecea
## Artemia/Week 2,Cedecea - Week 0,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 2,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 2,Cedecea - Week 0,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 2,Cedecea - Week 0,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Cedecea - Week 0,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Cedecea - Week 0,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Cedecea - Week 0,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Cedecea - Week 0,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Cedecea - Week 0,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 2,Cedecea - Week 0,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Cedecea - Week 0,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Cedecea
## Artemia/Week 3,Cedecea - Week 0,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 3,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 3,Cedecea - Week 0,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 3,Cedecea - Week 0,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Cedecea - Week 0,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Cedecea - Week 0,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Cedecea - Week 0,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Cedecea - Week 0,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Cedecea - Week 0,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 3,Cedecea - Week 0,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Cedecea - Week 0,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Cedecea - Week 0,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 4,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 4,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 4,Cedecea - Week 0,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 4,Cedecea - Week 0,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Cedecea - Week 0,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Cedecea - Week 0,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Cedecea - Week 0,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Cedecea - Week 0,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Cedecea - Week 0,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 4,Cedecea - Week 0,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Cedecea - Week 0,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 1,Cedecea
## Week 0,Cedecea - Zooplankton/Week 2,Cedecea
## Week 0,Cedecea - Zooplankton/Week 3,Cedecea
## Week 0,Cedecea - Zooplankton/Week 4,Cedecea
## Week 0,Cedecea - Artemia/Week 1,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 2,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 3,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 4,Chryseobacterium
## Week 0,Cedecea - Week 0,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 1,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 2,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 3,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 4,Chryseomicrobium
## Week 0,Cedecea - Week 0,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 1,Collimonas
## Week 0,Cedecea - Artemia/Week 2,Collimonas
## Week 0,Cedecea - Artemia/Week 3,Collimonas
## Week 0,Cedecea - Artemia/Week 4,Collimonas
## Week 0,Cedecea - Week 0,Collimonas
## Week 0,Cedecea - Zooplankton/Week 1,Collimonas
## Week 0,Cedecea - Zooplankton/Week 2,Collimonas
## Week 0,Cedecea - Zooplankton/Week 3,Collimonas
## Week 0,Cedecea - Zooplankton/Week 4,Collimonas
## Week 0,Cedecea - Artemia/Week 1,Deefgea
## Week 0,Cedecea - Artemia/Week 2,Deefgea
## Week 0,Cedecea - Artemia/Week 3,Deefgea
## Week 0,Cedecea - Artemia/Week 4,Deefgea
## Week 0,Cedecea - Week 0,Deefgea
## Week 0,Cedecea - Zooplankton/Week 1,Deefgea
## Week 0,Cedecea - Zooplankton/Week 2,Deefgea
## Week 0,Cedecea - Zooplankton/Week 3,Deefgea
## Week 0,Cedecea - Zooplankton/Week 4,Deefgea
## Week 0,Cedecea - Artemia/Week 1,Domibacillus
## Week 0,Cedecea - Artemia/Week 2,Domibacillus
## Week 0,Cedecea - Artemia/Week 3,Domibacillus
## Week 0,Cedecea - Artemia/Week 4,Domibacillus
## Week 0,Cedecea - Week 0,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 1,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 2,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 3,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 4,Domibacillus
## Week 0,Cedecea - Artemia/Week 1,Enterobacter
## Week 0,Cedecea - Artemia/Week 2,Enterobacter
## Week 0,Cedecea - Artemia/Week 3,Enterobacter
## Week 0,Cedecea - Artemia/Week 4,Enterobacter
## Week 0,Cedecea - Week 0,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 1,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 2,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 3,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 4,Enterobacter
## Week 0,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Week 0,Cedecea - Week 0,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 1,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 2,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 3,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 4,Exiguobacterium
## Week 0,Cedecea - Week 0,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 1,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 2,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 3,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 4,Janthinobacterium
## Week 0,Cedecea - Week 0,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 1,Lelliottia
## Week 0,Cedecea - Artemia/Week 2,Lelliottia
## Week 0,Cedecea - Artemia/Week 3,Lelliottia
## Week 0,Cedecea - Artemia/Week 4,Lelliottia
## Week 0,Cedecea - Week 0,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 1,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 2,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 3,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 4,Lelliottia
## Week 0,Cedecea - Artemia/Week 1,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 2,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 3,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 4,Methyloversatilis
## Week 0,Cedecea - Week 0,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 1,Plesiomonas
## Week 0,Cedecea - Artemia/Week 2,Plesiomonas
## Week 0,Cedecea - Artemia/Week 3,Plesiomonas
## Week 0,Cedecea - Artemia/Week 4,Plesiomonas
## Week 0,Cedecea - Week 0,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 1,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 2,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 3,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 4,Plesiomonas
## Week 0,Cedecea - Artemia/Week 1,Pseudomonas
## Week 0,Cedecea - Artemia/Week 2,Pseudomonas
## Week 0,Cedecea - Artemia/Week 3,Pseudomonas
## Week 0,Cedecea - Artemia/Week 4,Pseudomonas
## Week 0,Cedecea - Week 0,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 1,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 2,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 3,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 4,Pseudomonas
## Week 0,Cedecea - Artemia/Week 1,Shewanella
## Week 0,Cedecea - Artemia/Week 2,Shewanella
## Week 0,Cedecea - Artemia/Week 3,Shewanella
## Week 0,Cedecea - Artemia/Week 4,Shewanella
## Week 0,Cedecea - Week 0,Shewanella
## Week 0,Cedecea - Zooplankton/Week 1,Shewanella
## Week 0,Cedecea - Zooplankton/Week 2,Shewanella
## Week 0,Cedecea - Zooplankton/Week 3,Shewanella
## Week 0,Cedecea - Zooplankton/Week 4,Shewanella
## Week 0,Cedecea - Artemia/Week 1,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 2,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 3,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 4,Sphingobacterium
## Week 0,Cedecea - Week 0,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 1,Undibacterium
## Week 0,Cedecea - Artemia/Week 2,Undibacterium
## Week 0,Cedecea - Artemia/Week 3,Undibacterium
## Week 0,Cedecea - Artemia/Week 4,Undibacterium
## Week 0,Cedecea - Week 0,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 1,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 2,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 3,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Cedecea - Week 0,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Cedecea - Week 0,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Cedecea - Week 0,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Cedecea - Week 0,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Cedecea - Week 0,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Cedecea - Week 0,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Cedecea - Week 0,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Cedecea - Week 0,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Cedecea - Week 0,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Cedecea - Week 0,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Cedecea - Week 0,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Cedecea - Week 0,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 1,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 1,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 2,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 2,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 3,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 3,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 4,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 4,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Week 0,Chryseobacterium - Week 0,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 1,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 2,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 3,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 4,Collimonas
## Week 0,Chryseobacterium - Week 0,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 1,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 2,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 3,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 4,Deefgea
## Week 0,Chryseobacterium - Week 0,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 1,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 2,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 3,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 4,Domibacillus
## Week 0,Chryseobacterium - Week 0,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 1,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 2,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 3,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 4,Enterobacter
## Week 0,Chryseobacterium - Week 0,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Week 0,Chryseobacterium - Week 0,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Week 0,Chryseobacterium - Week 0,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Week 0,Chryseobacterium - Week 0,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 2,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 3,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 4,Lelliottia
## Week 0,Chryseobacterium - Week 0,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Week 0,Chryseobacterium - Week 0,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Week 0,Chryseobacterium - Week 0,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Week 0,Chryseobacterium - Week 0,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 1,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 2,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 3,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 4,Shewanella
## Week 0,Chryseobacterium - Week 0,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Week 0,Chryseobacterium - Week 0,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Undibacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Undibacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Undibacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Undibacterium
## Week 0,Chryseobacterium - Week 0,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 1,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 1,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 2,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 2,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 3,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 3,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 4,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 4,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 1,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 2,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 3,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 4,Collimonas
## Week 0,Chryseomicrobium - Week 0,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 1,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 2,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 3,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 4,Deefgea
## Week 0,Chryseomicrobium - Week 0,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Week 0,Chryseomicrobium - Week 0,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Week 0,Chryseomicrobium - Week 0,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Week 0,Chryseomicrobium - Week 0,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Week 0,Chryseomicrobium - Week 0,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Week 0,Chryseomicrobium - Week 0,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Week 0,Chryseomicrobium - Week 0,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Week 0,Chryseomicrobium - Week 0,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Week 0,Chryseomicrobium - Week 0,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Week 0,Chryseomicrobium - Week 0,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 1,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 2,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 3,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 4,Shewanella
## Week 0,Chryseomicrobium - Week 0,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Week 0,Chryseomicrobium - Week 0,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Week 0,Chryseomicrobium - Week 0,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Collimonas
## Artemia/Week 1,Collimonas - Artemia/Week 3,Collimonas
## Artemia/Week 1,Collimonas - Artemia/Week 4,Collimonas
## Artemia/Week 1,Collimonas - Week 0,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 1,Collimonas - Week 0,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Collimonas - Week 0,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Collimonas - Week 0,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Collimonas - Week 0,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Collimonas - Week 0,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Collimonas - Week 0,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Collimonas - Week 0,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Collimonas - Week 0,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Collimonas
## Artemia/Week 2,Collimonas - Artemia/Week 4,Collimonas
## Artemia/Week 2,Collimonas - Week 0,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 2,Collimonas - Week 0,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Collimonas - Week 0,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Collimonas - Week 0,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Collimonas - Week 0,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Collimonas - Week 0,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Collimonas - Week 0,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Collimonas - Week 0,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Collimonas - Week 0,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Collimonas
## Artemia/Week 3,Collimonas - Week 0,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 3,Collimonas - Week 0,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Collimonas - Week 0,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Collimonas - Week 0,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Collimonas - Week 0,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Collimonas - Week 0,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Collimonas - Week 0,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Collimonas - Week 0,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Collimonas - Week 0,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Collimonas - Week 0,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 4,Collimonas - Week 0,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Collimonas - Week 0,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Collimonas - Week 0,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Collimonas - Week 0,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Collimonas - Week 0,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Collimonas - Week 0,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Collimonas - Week 0,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Collimonas - Week 0,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 1,Collimonas
## Week 0,Collimonas - Zooplankton/Week 2,Collimonas
## Week 0,Collimonas - Zooplankton/Week 3,Collimonas
## Week 0,Collimonas - Zooplankton/Week 4,Collimonas
## Week 0,Collimonas - Artemia/Week 1,Deefgea
## Week 0,Collimonas - Artemia/Week 2,Deefgea
## Week 0,Collimonas - Artemia/Week 3,Deefgea
## Week 0,Collimonas - Artemia/Week 4,Deefgea
## Week 0,Collimonas - Week 0,Deefgea
## Week 0,Collimonas - Zooplankton/Week 1,Deefgea
## Week 0,Collimonas - Zooplankton/Week 2,Deefgea
## Week 0,Collimonas - Zooplankton/Week 3,Deefgea
## Week 0,Collimonas - Zooplankton/Week 4,Deefgea
## Week 0,Collimonas - Artemia/Week 1,Domibacillus
## Week 0,Collimonas - Artemia/Week 2,Domibacillus
## Week 0,Collimonas - Artemia/Week 3,Domibacillus
## Week 0,Collimonas - Artemia/Week 4,Domibacillus
## Week 0,Collimonas - Week 0,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 1,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 2,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 3,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 4,Domibacillus
## Week 0,Collimonas - Artemia/Week 1,Enterobacter
## Week 0,Collimonas - Artemia/Week 2,Enterobacter
## Week 0,Collimonas - Artemia/Week 3,Enterobacter
## Week 0,Collimonas - Artemia/Week 4,Enterobacter
## Week 0,Collimonas - Week 0,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 1,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 2,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 3,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 4,Enterobacter
## Week 0,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Week 0,Collimonas - Week 0,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 1,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 2,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 3,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 4,Exiguobacterium
## Week 0,Collimonas - Week 0,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 1,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 2,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 3,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 4,Janthinobacterium
## Week 0,Collimonas - Week 0,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 1,Lelliottia
## Week 0,Collimonas - Artemia/Week 2,Lelliottia
## Week 0,Collimonas - Artemia/Week 3,Lelliottia
## Week 0,Collimonas - Artemia/Week 4,Lelliottia
## Week 0,Collimonas - Week 0,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 1,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 2,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 3,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 4,Lelliottia
## Week 0,Collimonas - Artemia/Week 1,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 2,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 3,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 4,Methyloversatilis
## Week 0,Collimonas - Week 0,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 1,Plesiomonas
## Week 0,Collimonas - Artemia/Week 2,Plesiomonas
## Week 0,Collimonas - Artemia/Week 3,Plesiomonas
## Week 0,Collimonas - Artemia/Week 4,Plesiomonas
## Week 0,Collimonas - Week 0,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 1,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 2,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 3,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 4,Plesiomonas
## Week 0,Collimonas - Artemia/Week 1,Pseudomonas
## Week 0,Collimonas - Artemia/Week 2,Pseudomonas
## Week 0,Collimonas - Artemia/Week 3,Pseudomonas
## Week 0,Collimonas - Artemia/Week 4,Pseudomonas
## Week 0,Collimonas - Week 0,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Collimonas - Artemia/Week 1,Shewanella
## Week 0,Collimonas - Artemia/Week 2,Shewanella
## Week 0,Collimonas - Artemia/Week 3,Shewanella
## Week 0,Collimonas - Artemia/Week 4,Shewanella
## Week 0,Collimonas - Week 0,Shewanella
## Week 0,Collimonas - Zooplankton/Week 1,Shewanella
## Week 0,Collimonas - Zooplankton/Week 2,Shewanella
## Week 0,Collimonas - Zooplankton/Week 3,Shewanella
## Week 0,Collimonas - Zooplankton/Week 4,Shewanella
## Week 0,Collimonas - Artemia/Week 1,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 2,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 3,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 4,Sphingobacterium
## Week 0,Collimonas - Week 0,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 1,Undibacterium
## Week 0,Collimonas - Artemia/Week 2,Undibacterium
## Week 0,Collimonas - Artemia/Week 3,Undibacterium
## Week 0,Collimonas - Artemia/Week 4,Undibacterium
## Week 0,Collimonas - Week 0,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 1,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 2,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 3,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Collimonas - Week 0,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Collimonas - Week 0,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Collimonas - Week 0,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Collimonas - Week 0,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Collimonas - Week 0,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Collimonas - Week 0,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Collimonas - Week 0,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Collimonas - Week 0,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Deefgea
## Artemia/Week 1,Deefgea - Artemia/Week 3,Deefgea
## Artemia/Week 1,Deefgea - Artemia/Week 4,Deefgea
## Artemia/Week 1,Deefgea - Week 0,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Deefgea - Week 0,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Deefgea - Week 0,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Deefgea - Week 0,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Deefgea - Week 0,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Deefgea - Week 0,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 1,Deefgea - Week 0,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Deefgea - Week 0,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Deefgea
## Artemia/Week 2,Deefgea - Artemia/Week 4,Deefgea
## Artemia/Week 2,Deefgea - Week 0,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Deefgea - Week 0,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Deefgea - Week 0,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Deefgea - Week 0,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Deefgea - Week 0,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Deefgea - Week 0,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 2,Deefgea - Week 0,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Deefgea - Week 0,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Deefgea
## Artemia/Week 3,Deefgea - Week 0,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Deefgea - Week 0,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Deefgea - Week 0,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Deefgea - Week 0,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Deefgea - Week 0,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Deefgea - Week 0,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 3,Deefgea - Week 0,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Deefgea - Week 0,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Deefgea - Week 0,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Deefgea - Week 0,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Deefgea - Week 0,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Deefgea - Week 0,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Deefgea - Week 0,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Deefgea - Week 0,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 4,Deefgea - Week 0,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Deefgea - Week 0,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 1,Deefgea
## Week 0,Deefgea - Zooplankton/Week 2,Deefgea
## Week 0,Deefgea - Zooplankton/Week 3,Deefgea
## Week 0,Deefgea - Zooplankton/Week 4,Deefgea
## Week 0,Deefgea - Artemia/Week 1,Domibacillus
## Week 0,Deefgea - Artemia/Week 2,Domibacillus
## Week 0,Deefgea - Artemia/Week 3,Domibacillus
## Week 0,Deefgea - Artemia/Week 4,Domibacillus
## Week 0,Deefgea - Week 0,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 1,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 2,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 3,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 4,Domibacillus
## Week 0,Deefgea - Artemia/Week 1,Enterobacter
## Week 0,Deefgea - Artemia/Week 2,Enterobacter
## Week 0,Deefgea - Artemia/Week 3,Enterobacter
## Week 0,Deefgea - Artemia/Week 4,Enterobacter
## Week 0,Deefgea - Week 0,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 1,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 2,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 3,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 4,Enterobacter
## Week 0,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Week 0,Deefgea - Week 0,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 1,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 2,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 3,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 4,Exiguobacterium
## Week 0,Deefgea - Week 0,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 1,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 2,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 3,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 4,Janthinobacterium
## Week 0,Deefgea - Week 0,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 1,Lelliottia
## Week 0,Deefgea - Artemia/Week 2,Lelliottia
## Week 0,Deefgea - Artemia/Week 3,Lelliottia
## Week 0,Deefgea - Artemia/Week 4,Lelliottia
## Week 0,Deefgea - Week 0,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 1,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 2,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 3,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 4,Lelliottia
## Week 0,Deefgea - Artemia/Week 1,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 2,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 3,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 4,Methyloversatilis
## Week 0,Deefgea - Week 0,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 1,Plesiomonas
## Week 0,Deefgea - Artemia/Week 2,Plesiomonas
## Week 0,Deefgea - Artemia/Week 3,Plesiomonas
## Week 0,Deefgea - Artemia/Week 4,Plesiomonas
## Week 0,Deefgea - Week 0,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 1,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 2,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 3,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 4,Plesiomonas
## Week 0,Deefgea - Artemia/Week 1,Pseudomonas
## Week 0,Deefgea - Artemia/Week 2,Pseudomonas
## Week 0,Deefgea - Artemia/Week 3,Pseudomonas
## Week 0,Deefgea - Artemia/Week 4,Pseudomonas
## Week 0,Deefgea - Week 0,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 1,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 2,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 3,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 4,Pseudomonas
## Week 0,Deefgea - Artemia/Week 1,Shewanella
## Week 0,Deefgea - Artemia/Week 2,Shewanella
## Week 0,Deefgea - Artemia/Week 3,Shewanella
## Week 0,Deefgea - Artemia/Week 4,Shewanella
## Week 0,Deefgea - Week 0,Shewanella
## Week 0,Deefgea - Zooplankton/Week 1,Shewanella
## Week 0,Deefgea - Zooplankton/Week 2,Shewanella
## Week 0,Deefgea - Zooplankton/Week 3,Shewanella
## Week 0,Deefgea - Zooplankton/Week 4,Shewanella
## Week 0,Deefgea - Artemia/Week 1,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 2,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 3,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 4,Sphingobacterium
## Week 0,Deefgea - Week 0,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 1,Undibacterium
## Week 0,Deefgea - Artemia/Week 2,Undibacterium
## Week 0,Deefgea - Artemia/Week 3,Undibacterium
## Week 0,Deefgea - Artemia/Week 4,Undibacterium
## Week 0,Deefgea - Week 0,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 1,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 2,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 3,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Deefgea - Week 0,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Deefgea - Week 0,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Deefgea - Week 0,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Deefgea - Week 0,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Domibacillus - Week 0,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Domibacillus - Week 0,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Domibacillus - Week 0,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 1,Domibacillus - Week 0,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Domibacillus - Week 0,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Domibacillus - Week 0,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Domibacillus - Week 0,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Domibacillus - Week 0,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 2,Domibacillus - Week 0,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Domibacillus - Week 0,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Domibacillus - Week 0,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Domibacillus - Week 0,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Domibacillus - Week 0,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 3,Domibacillus - Week 0,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Domibacillus - Week 0,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Domibacillus - Week 0,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Domibacillus - Week 0,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Domibacillus - Week 0,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 4,Domibacillus - Week 0,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Domibacillus - Week 0,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Domibacillus
## Week 0,Domibacillus - Zooplankton/Week 2,Domibacillus
## Week 0,Domibacillus - Zooplankton/Week 3,Domibacillus
## Week 0,Domibacillus - Zooplankton/Week 4,Domibacillus
## Week 0,Domibacillus - Artemia/Week 1,Enterobacter
## Week 0,Domibacillus - Artemia/Week 2,Enterobacter
## Week 0,Domibacillus - Artemia/Week 3,Enterobacter
## Week 0,Domibacillus - Artemia/Week 4,Enterobacter
## Week 0,Domibacillus - Week 0,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 1,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 2,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 3,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 4,Enterobacter
## Week 0,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Week 0,Domibacillus - Week 0,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 1,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 2,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 3,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 4,Exiguobacterium
## Week 0,Domibacillus - Week 0,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 1,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 2,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 3,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 4,Janthinobacterium
## Week 0,Domibacillus - Week 0,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 1,Lelliottia
## Week 0,Domibacillus - Artemia/Week 2,Lelliottia
## Week 0,Domibacillus - Artemia/Week 3,Lelliottia
## Week 0,Domibacillus - Artemia/Week 4,Lelliottia
## Week 0,Domibacillus - Week 0,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 1,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 2,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 3,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 4,Lelliottia
## Week 0,Domibacillus - Artemia/Week 1,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 2,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 3,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 4,Methyloversatilis
## Week 0,Domibacillus - Week 0,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 1,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 2,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 3,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 4,Plesiomonas
## Week 0,Domibacillus - Week 0,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 1,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 2,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 3,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 4,Pseudomonas
## Week 0,Domibacillus - Week 0,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 1,Shewanella
## Week 0,Domibacillus - Artemia/Week 2,Shewanella
## Week 0,Domibacillus - Artemia/Week 3,Shewanella
## Week 0,Domibacillus - Artemia/Week 4,Shewanella
## Week 0,Domibacillus - Week 0,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 1,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 2,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 3,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 4,Shewanella
## Week 0,Domibacillus - Artemia/Week 1,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 2,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 3,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 4,Sphingobacterium
## Week 0,Domibacillus - Week 0,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 1,Undibacterium
## Week 0,Domibacillus - Artemia/Week 2,Undibacterium
## Week 0,Domibacillus - Artemia/Week 3,Undibacterium
## Week 0,Domibacillus - Artemia/Week 4,Undibacterium
## Week 0,Domibacillus - Week 0,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Enterobacter - Week 0,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Enterobacter - Week 0,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 1,Enterobacter - Week 0,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Enterobacter - Week 0,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Enterobacter - Week 0,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Enterobacter - Week 0,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 2,Enterobacter - Week 0,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Enterobacter - Week 0,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Enterobacter - Week 0,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Enterobacter - Week 0,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 3,Enterobacter - Week 0,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Enterobacter - Week 0,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Enterobacter - Week 0,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Enterobacter - Week 0,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 4,Enterobacter - Week 0,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Enterobacter - Week 0,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Enterobacter
## Week 0,Enterobacter - Zooplankton/Week 2,Enterobacter
## Week 0,Enterobacter - Zooplankton/Week 3,Enterobacter
## Week 0,Enterobacter - Zooplankton/Week 4,Enterobacter
## Week 0,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Week 0,Enterobacter - Week 0,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 1,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 2,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 3,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 4,Exiguobacterium
## Week 0,Enterobacter - Week 0,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 1,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 2,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 3,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 4,Janthinobacterium
## Week 0,Enterobacter - Week 0,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 1,Lelliottia
## Week 0,Enterobacter - Artemia/Week 2,Lelliottia
## Week 0,Enterobacter - Artemia/Week 3,Lelliottia
## Week 0,Enterobacter - Artemia/Week 4,Lelliottia
## Week 0,Enterobacter - Week 0,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 1,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 2,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 3,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 4,Lelliottia
## Week 0,Enterobacter - Artemia/Week 1,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 2,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 3,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 4,Methyloversatilis
## Week 0,Enterobacter - Week 0,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 1,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 2,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 3,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 4,Plesiomonas
## Week 0,Enterobacter - Week 0,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 1,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 2,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 3,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 4,Pseudomonas
## Week 0,Enterobacter - Week 0,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 1,Shewanella
## Week 0,Enterobacter - Artemia/Week 2,Shewanella
## Week 0,Enterobacter - Artemia/Week 3,Shewanella
## Week 0,Enterobacter - Artemia/Week 4,Shewanella
## Week 0,Enterobacter - Week 0,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 1,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 2,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 3,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 4,Shewanella
## Week 0,Enterobacter - Artemia/Week 1,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 2,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 3,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 4,Sphingobacterium
## Week 0,Enterobacter - Week 0,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 1,Undibacterium
## Week 0,Enterobacter - Artemia/Week 2,Undibacterium
## Week 0,Enterobacter - Artemia/Week 3,Undibacterium
## Week 0,Enterobacter - Artemia/Week 4,Undibacterium
## Week 0,Enterobacter - Week 0,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Week 0,Escherichia/Shigella - Week 0,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Week 0,Escherichia/Shigella - Week 0,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Week 0,Escherichia/Shigella - Week 0,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Week 0,Escherichia/Shigella - Week 0,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Week 0,Escherichia/Shigella - Week 0,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Week 0,Escherichia/Shigella - Week 0,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Week 0,Escherichia/Shigella - Week 0,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Week 0,Escherichia/Shigella - Week 0,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Week 0,Escherichia/Shigella - Week 0,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Week 0,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Week 0,Exiguobacterium - Week 0,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 1,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 2,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 3,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 4,Lelliottia
## Week 0,Exiguobacterium - Week 0,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Week 0,Exiguobacterium - Week 0,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Week 0,Exiguobacterium - Week 0,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Week 0,Exiguobacterium - Week 0,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 1,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 2,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 3,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 4,Shewanella
## Week 0,Exiguobacterium - Week 0,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Week 0,Exiguobacterium - Week 0,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 1,Undibacterium
## Week 0,Exiguobacterium - Artemia/Week 2,Undibacterium
## Week 0,Exiguobacterium - Artemia/Week 3,Undibacterium
## Week 0,Exiguobacterium - Artemia/Week 4,Undibacterium
## Week 0,Exiguobacterium - Week 0,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Janthinobacterium - Artemia/Week 1,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 2,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 3,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 4,Lelliottia
## Week 0,Janthinobacterium - Week 0,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Week 0,Janthinobacterium - Week 0,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Week 0,Janthinobacterium - Week 0,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Week 0,Janthinobacterium - Week 0,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 1,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 2,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 3,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 4,Shewanella
## Week 0,Janthinobacterium - Week 0,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Week 0,Janthinobacterium - Week 0,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 1,Undibacterium
## Week 0,Janthinobacterium - Artemia/Week 2,Undibacterium
## Week 0,Janthinobacterium - Artemia/Week 3,Undibacterium
## Week 0,Janthinobacterium - Artemia/Week 4,Undibacterium
## Week 0,Janthinobacterium - Week 0,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Lelliottia - Week 0,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 1,Lelliottia - Week 0,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Lelliottia - Week 0,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Lelliottia - Week 0,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 2,Lelliottia - Week 0,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Lelliottia - Week 0,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Lelliottia - Week 0,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 3,Lelliottia - Week 0,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Lelliottia - Week 0,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Lelliottia - Week 0,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 4,Lelliottia - Week 0,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Lelliottia - Week 0,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 1,Lelliottia
## Week 0,Lelliottia - Zooplankton/Week 2,Lelliottia
## Week 0,Lelliottia - Zooplankton/Week 3,Lelliottia
## Week 0,Lelliottia - Zooplankton/Week 4,Lelliottia
## Week 0,Lelliottia - Artemia/Week 1,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 2,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 3,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 4,Methyloversatilis
## Week 0,Lelliottia - Week 0,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 1,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 2,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 3,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 4,Plesiomonas
## Week 0,Lelliottia - Week 0,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 1,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 2,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 3,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 4,Pseudomonas
## Week 0,Lelliottia - Week 0,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 1,Shewanella
## Week 0,Lelliottia - Artemia/Week 2,Shewanella
## Week 0,Lelliottia - Artemia/Week 3,Shewanella
## Week 0,Lelliottia - Artemia/Week 4,Shewanella
## Week 0,Lelliottia - Week 0,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 1,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 2,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 3,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 4,Shewanella
## Week 0,Lelliottia - Artemia/Week 1,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 2,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 3,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 4,Sphingobacterium
## Week 0,Lelliottia - Week 0,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 1,Undibacterium
## Week 0,Lelliottia - Artemia/Week 2,Undibacterium
## Week 0,Lelliottia - Artemia/Week 3,Undibacterium
## Week 0,Lelliottia - Artemia/Week 4,Undibacterium
## Week 0,Lelliottia - Week 0,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 1,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 2,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 3,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 1,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 2,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 3,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 4,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Week 0,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Week 0,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Week 0,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Week 0,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Week 0,Methyloversatilis - Week 0,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Week 0,Methyloversatilis - Week 0,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 1,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 2,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 3,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 4,Shewanella
## Week 0,Methyloversatilis - Week 0,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Week 0,Methyloversatilis - Week 0,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 1,Undibacterium
## Week 0,Methyloversatilis - Artemia/Week 2,Undibacterium
## Week 0,Methyloversatilis - Artemia/Week 3,Undibacterium
## Week 0,Methyloversatilis - Artemia/Week 4,Undibacterium
## Week 0,Methyloversatilis - Week 0,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Plesiomonas - Week 0,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Plesiomonas - Week 0,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Plesiomonas - Week 0,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Plesiomonas - Week 0,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Week 0,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Week 0,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Week 0,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Week 0,Plesiomonas - Artemia/Week 1,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 2,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 3,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 4,Pseudomonas
## Week 0,Plesiomonas - Week 0,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 1,Shewanella
## Week 0,Plesiomonas - Artemia/Week 2,Shewanella
## Week 0,Plesiomonas - Artemia/Week 3,Shewanella
## Week 0,Plesiomonas - Artemia/Week 4,Shewanella
## Week 0,Plesiomonas - Week 0,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 1,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 2,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 3,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 4,Shewanella
## Week 0,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Week 0,Plesiomonas - Week 0,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 1,Undibacterium
## Week 0,Plesiomonas - Artemia/Week 2,Undibacterium
## Week 0,Plesiomonas - Artemia/Week 3,Undibacterium
## Week 0,Plesiomonas - Artemia/Week 4,Undibacterium
## Week 0,Plesiomonas - Week 0,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Pseudomonas - Week 0,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Pseudomonas - Week 0,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Pseudomonas - Week 0,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Pseudomonas - Week 0,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Pseudomonas - Artemia/Week 1,Shewanella
## Week 0,Pseudomonas - Artemia/Week 2,Shewanella
## Week 0,Pseudomonas - Artemia/Week 3,Shewanella
## Week 0,Pseudomonas - Artemia/Week 4,Shewanella
## Week 0,Pseudomonas - Week 0,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 1,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 2,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 3,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 4,Shewanella
## Week 0,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Week 0,Pseudomonas - Week 0,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 1,Undibacterium
## Week 0,Pseudomonas - Artemia/Week 2,Undibacterium
## Week 0,Pseudomonas - Artemia/Week 3,Undibacterium
## Week 0,Pseudomonas - Artemia/Week 4,Undibacterium
## Week 0,Pseudomonas - Week 0,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 2,Shewanella
## Artemia/Week 1,Shewanella - Artemia/Week 3,Shewanella
## Artemia/Week 1,Shewanella - Artemia/Week 4,Shewanella
## Artemia/Week 1,Shewanella - Week 0,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Shewanella - Week 0,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 3,Shewanella
## Artemia/Week 2,Shewanella - Artemia/Week 4,Shewanella
## Artemia/Week 2,Shewanella - Week 0,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Shewanella - Week 0,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 4,Shewanella
## Artemia/Week 3,Shewanella - Week 0,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Shewanella - Week 0,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Shewanella - Week 0,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Shewanella - Week 0,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 4,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 1,Shewanella
## Week 0,Shewanella - Zooplankton/Week 2,Shewanella
## Week 0,Shewanella - Zooplankton/Week 3,Shewanella
## Week 0,Shewanella - Zooplankton/Week 4,Shewanella
## Week 0,Shewanella - Artemia/Week 1,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 2,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 3,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 4,Sphingobacterium
## Week 0,Shewanella - Week 0,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 1,Undibacterium
## Week 0,Shewanella - Artemia/Week 2,Undibacterium
## Week 0,Shewanella - Artemia/Week 3,Undibacterium
## Week 0,Shewanella - Artemia/Week 4,Undibacterium
## Week 0,Shewanella - Week 0,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 1,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 2,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 3,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Sphingobacterium - Artemia/Week 1,Undibacterium
## Week 0,Sphingobacterium - Artemia/Week 2,Undibacterium
## Week 0,Sphingobacterium - Artemia/Week 3,Undibacterium
## Week 0,Sphingobacterium - Artemia/Week 4,Undibacterium
## Week 0,Sphingobacterium - Week 0,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Undibacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Undibacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Undibacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Undibacterium - Week 0,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Undibacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Undibacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Undibacterium - Week 0,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Undibacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Undibacterium - Week 0,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Undibacterium - Week 0,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Undibacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Undibacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Undibacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Undibacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Undibacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Undibacterium - Zooplankton/Week 4,Undibacterium
## estimate SE df z.ratio p.value
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0001913 0.00281746 Inf 0.068 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.2369927 0.06218862 Inf -3.811 0.4898
## -0.0011939 0.00322816 Inf -0.370 1.0000
## 0.0001428 0.00286634 Inf 0.050 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.3809189 0.03467625 Inf -10.985 <.0001
## -0.6214310 0.03911894 Inf -15.886 <.0001
## -0.0304910 0.00872029 Inf -3.497 0.7949
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0076953 0.00214835 Inf 3.582 0.7194
## -0.6825246 0.03263915 Inf -20.911 <.0001
## -0.1728194 0.02436048 Inf -7.094 <.0001
## -0.0008787 0.00287502 Inf -0.306 1.0000
## 0.0000246 0.00311991 Inf 0.008 1.0000
## -0.0134140 0.00596949 Inf -2.247 1.0000
## -0.0330223 0.01145759 Inf -2.882 0.9981
## -0.0013573 0.00307944 Inf -0.441 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0000995 0.00301129 Inf -0.033 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## 0.0001473 0.00296414 Inf 0.050 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.1094307 0.04306051 Inf -2.541 1.0000
## -0.0033493 0.00368345 Inf -0.909 1.0000
## -0.0012338 0.00311035 Inf -0.397 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## -0.0002741 0.00318502 Inf -0.086 1.0000
## -0.0534778 0.01368366 Inf -3.908 0.3952
## -0.0038758 0.00417242 Inf -0.929 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0001913 0.00281746 Inf 0.068 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0292970 0.00937654 Inf -3.124 0.9774
## -0.0463015 0.01167447 Inf -3.966 0.3431
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0203885 0.01513100 Inf -1.347 1.0000
## 0.0001473 0.00296414 Inf 0.050 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0002211 0.00271455 Inf 0.081 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0023139 0.00346093 Inf -0.669 1.0000
## -0.0136215 0.00675682 Inf -2.016 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0007286 0.00525834 Inf -0.139 1.0000
## -0.0773731 0.01710146 Inf -4.524 0.0554
## -0.0418204 0.01095397 Inf -3.818 0.4828
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0374190 0.01093676 Inf -3.421 0.8521
## -0.0091477 0.00557081 Inf -1.642 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0000493 0.00298277 Inf 0.017 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0231401 0.00811000 Inf -2.853 0.9987
## -0.0637150 0.01732206 Inf -3.678 0.6248
## -0.0020751 0.00320803 Inf -0.647 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0001780 0.00302643 Inf -0.059 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.1436258 0.02393210 Inf -6.001 <.0001
## -0.0700431 0.01834100 Inf -3.819 0.4817
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0002646 0.00304321 Inf -0.087 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0783096 0.01722208 Inf -4.547 0.0506
## -0.0040038 0.00420574 Inf -0.952 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0029282 0.00359222 Inf -0.815 1.0000
## 0.0001216 0.00286995 Inf 0.042 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0016553 0.00332291 Inf -0.498 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0001579 0.00282285 Inf 0.056 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0423652 0.02426349 Inf -1.746 1.0000
## -0.0011118 0.00321149 Inf -0.346 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0043956 0.00391364 Inf -1.123 1.0000
## -0.0833125 0.02031355 Inf -4.101 0.2372
## -0.9129689 0.01483545 Inf -61.540 <.0001
## -0.9740585 0.01039944 Inf -93.664 <.0001
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0012018 0.00322977 Inf -0.372 1.0000
## 0.0001216 0.00286995 Inf 0.042 1.0000
## -0.0001397 0.00276585 Inf -0.050 1.0000
## 0.0000543 0.00311350 Inf 0.017 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0551610 0.02872443 Inf -1.920 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0001668 0.00302426 Inf -0.055 1.0000
## -0.0002496 0.00326702 Inf -0.076 1.0000
## -0.0016939 0.00313924 Inf -0.540 1.0000
## -0.0050683 0.00751728 Inf -0.674 1.0000
## -0.0052772 0.00762637 Inf -0.692 1.0000
## -0.0029705 0.00360136 Inf -0.825 1.0000
## -0.0159654 0.00614511 Inf -2.598 1.0000
## -0.9776710 0.00401934 Inf -243.242 <.0001
## -0.9775379 0.00492358 Inf -198.542 <.0001
## -0.0226863 0.00801378 Inf -2.831 0.9990
## -0.0188861 0.00811295 Inf -2.328 1.0000
## -0.0014900 0.00310290 Inf -0.480 1.0000
## -0.0009576 0.00537609 Inf -0.178 1.0000
## -0.3071602 0.06814822 Inf -4.507 0.0592
## -0.0158406 0.00651747 Inf -2.430 1.0000
## -0.0036968 0.00358445 Inf -1.031 1.0000
## 0.0001932 0.00271847 Inf 0.071 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.1745253 0.02627090 Inf -6.643 <.0001
## -0.0192424 0.00820275 Inf -2.346 1.0000
## -0.0009575 0.00300959 Inf -0.318 1.0000
## -0.0007286 0.00525834 Inf -0.139 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0458850 0.01243706 Inf -3.689 0.6135
## -0.5794801 0.03267257 Inf -17.736 <.0001
## 0.0002211 0.00271455 Inf 0.081 1.0000
## -0.0002971 0.00319005 Inf -0.093 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0322202 0.02030322 Inf -1.587 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## 0.0003762 0.00292109 Inf 0.129 1.0000
## 0.0003762 0.00312242 Inf 0.120 1.0000
## 0.0003762 0.00278788 Inf 0.135 1.0000
## 0.0003762 0.00469600 Inf 0.080 1.0000
## -0.0513379 0.02744814 Inf -1.870 1.0000
## -0.0009466 0.00317814 Inf -0.298 1.0000
## 0.0003762 0.00282701 Inf 0.133 1.0000
## 0.0003762 0.00269295 Inf 0.140 1.0000
## 0.0003762 0.00304470 Inf 0.124 1.0000
## -0.0001849 0.00295535 Inf -0.063 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.2373689 0.06219518 Inf -3.817 0.4841
## -0.0015701 0.00334946 Inf -0.469 1.0000
## -0.0002333 0.00300200 Inf -0.078 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.3812951 0.03468776 Inf -10.992 <.0001
## -0.6218072 0.03912876 Inf -15.891 <.0001
## -0.0308671 0.00876724 Inf -3.521 0.7746
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0073191 0.00232373 Inf 3.150 0.9724
## -0.6829008 0.03265080 Inf -20.915 <.0001
## -0.1731956 0.02437736 Inf -7.105 <.0001
## -0.0012549 0.00301052 Inf -0.417 1.0000
## -0.0003515 0.00324502 Inf -0.108 1.0000
## -0.0137901 0.00603702 Inf -2.284 1.0000
## -0.0333984 0.01149340 Inf -2.906 0.9975
## -0.0017335 0.00320641 Inf -0.541 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0004757 0.00314075 Inf -0.151 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002288 0.00309552 Inf -0.074 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.1098068 0.04307013 Inf -2.549 1.0000
## -0.0037255 0.00379058 Inf -0.983 1.0000
## -0.0016100 0.00323608 Inf -0.498 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0006503 0.00330772 Inf -0.197 1.0000
## -0.0538539 0.01371385 Inf -3.927 0.3779
## -0.0042520 0.00426736 Inf -0.996 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## -0.0001849 0.00295535 Inf -0.063 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0296732 0.00942019 Inf -3.150 0.9723
## -0.0466777 0.01170978 Inf -3.986 0.3258
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0207647 0.01515794 Inf -1.370 1.0000
## -0.0002288 0.00309552 Inf -0.074 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0001551 0.00285741 Inf -0.054 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0026901 0.00357455 Inf -0.753 1.0000
## -0.0139976 0.00681656 Inf -2.053 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## -0.0777493 0.01712567 Inf -4.540 0.0521
## -0.0421966 0.01099155 Inf -3.839 0.4617
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0377951 0.01097434 Inf -3.444 0.8360
## -0.0095239 0.00564277 Inf -1.688 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0003268 0.00311338 Inf -0.105 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0235162 0.00816024 Inf -2.882 0.9981
## -0.0640912 0.01734594 Inf -3.695 0.6079
## -0.0024513 0.00333024 Inf -0.736 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0005542 0.00315529 Inf -0.176 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1440020 0.02394935 Inf -6.013 <.0001
## -0.0704192 0.01836357 Inf -3.835 0.4659
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0006408 0.00317141 Inf -0.202 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0786858 0.01724612 Inf -4.563 0.0476
## -0.0043800 0.00429996 Inf -1.019 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0033044 0.00370192 Inf -0.893 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0020315 0.00344096 Inf -0.590 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## -0.0002183 0.00296051 Inf -0.074 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0427414 0.02428048 Inf -1.760 1.0000
## -0.0014880 0.00333339 Inf -0.446 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0047718 0.00401478 Inf -1.189 1.0000
## -0.0836887 0.02033394 Inf -4.116 0.2274
## -0.9133451 0.01486037 Inf -61.462 <.0001
## -0.9744347 0.01043594 Inf -93.373 <.0001
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0015780 0.00335102 Inf -0.471 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## -0.0005159 0.00290627 Inf -0.178 1.0000
## -0.0003219 0.00323885 Inf -0.099 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0555372 0.02873883 Inf -1.932 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0005430 0.00315320 Inf -0.172 1.0000
## -0.0006258 0.00338675 Inf -0.185 1.0000
## -0.0020700 0.00326395 Inf -0.634 1.0000
## -0.0054444 0.00757048 Inf -0.719 1.0000
## -0.0056534 0.00767883 Inf -0.736 1.0000
## -0.0033467 0.00371079 Inf -0.902 1.0000
## -0.0163416 0.00621089 Inf -2.631 1.0000
## -0.9780472 0.00411327 Inf -237.778 <.0001
## -0.9779141 0.00500054 Inf -195.562 <.0001
## -0.0230625 0.00806460 Inf -2.860 0.9986
## -0.0192622 0.00816302 Inf -2.360 1.0000
## -0.0018662 0.00322898 Inf -0.578 1.0000
## -0.0013337 0.00544976 Inf -0.245 1.0000
## -0.3075364 0.06815414 Inf -4.512 0.0580
## -0.0162167 0.00657952 Inf -2.465 1.0000
## -0.0040729 0.00369450 Inf -1.102 1.0000
## -0.0001830 0.00286114 Inf -0.064 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1749015 0.02628655 Inf -6.654 <.0001
## -0.0196185 0.00825228 Inf -2.377 1.0000
## -0.0013336 0.00313930 Inf -0.425 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0462612 0.01247021 Inf -3.710 0.5928
## -0.5798562 0.03268440 Inf -17.741 <.0001
## -0.0001551 0.00285741 Inf -0.054 1.0000
## -0.0006732 0.00331258 Inf -0.203 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.2371840 0.06218053 Inf -3.814 0.4862
## -0.0013852 0.00306703 Inf -0.452 1.0000
## -0.0000485 0.00268340 Inf -0.018 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.3811102 0.03466163 Inf -10.995 <.0001
## -0.6216223 0.03910578 Inf -15.896 <.0001
## -0.0306823 0.00866261 Inf -3.542 0.7560
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0075039 0.00189583 Inf 3.958 0.3500
## -0.6827159 0.03262332 Inf -20.927 <.0001
## -0.1730107 0.02433991 Inf -7.108 <.0001
## -0.0010700 0.00269281 Inf -0.397 1.0000
## -0.0001667 0.00295274 Inf -0.056 1.0000
## -0.0136053 0.00588447 Inf -2.312 1.0000
## -0.0332136 0.01141377 Inf -2.910 0.9973
## -0.0015487 0.00291010 Inf -0.532 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0002908 0.00283774 Inf -0.102 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0000440 0.00278762 Inf -0.016 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.1096220 0.04304891 Inf -2.546 1.0000
## -0.0035406 0.00354328 Inf -0.999 1.0000
## -0.0014251 0.00294278 Inf -0.484 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## -0.0004655 0.00302149 Inf -0.154 1.0000
## -0.0536691 0.01364709 Inf -3.933 0.3727
## -0.0040671 0.00404925 Inf -1.004 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0000000 0.00263112 Inf 0.000 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0294883 0.00932290 Inf -3.163 0.9694
## -0.0464928 0.01163155 Inf -3.997 0.3167
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0205798 0.01509775 Inf -1.363 1.0000
## -0.0000440 0.00278762 Inf -0.016 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0000298 0.00252061 Inf 0.012 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0025052 0.00331126 Inf -0.757 1.0000
## -0.0138128 0.00668183 Inf -2.067 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0009199 0.00516096 Inf -0.178 1.0000
## -0.0775645 0.01707223 Inf -4.543 0.0514
## -0.0420118 0.01090820 Inf -3.851 0.4495
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0376103 0.01089088 Inf -3.453 0.8290
## -0.0093391 0.00547943 Inf -1.704 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0001420 0.00280744 Inf -0.051 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0233314 0.00804783 Inf -2.899 0.9977
## -0.0639064 0.01729319 Inf -3.695 0.6074
## -0.0022664 0.00304593 Inf -0.744 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0003693 0.00285381 Inf -0.129 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.1438172 0.02391120 Inf -6.015 <.0001
## -0.0702344 0.01831375 Inf -3.835 0.4656
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0004559 0.00287161 Inf -0.159 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0785010 0.01719306 Inf -4.566 0.0470
## -0.0041951 0.00408358 Inf -1.027 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0031195 0.00344831 Inf -0.905 1.0000
## -0.0000697 0.00268726 Inf -0.026 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0018467 0.00316665 Inf -0.583 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## -0.0000335 0.00263690 Inf -0.013 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0425565 0.02424286 Inf -1.755 1.0000
## -0.0013031 0.00304947 Inf -0.427 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0045869 0.00378209 Inf -1.213 1.0000
## -0.0835038 0.02028896 Inf -4.116 0.2274
## -0.9131602 0.01480023 Inf -61.699 <.0001
## -0.9742498 0.01034964 Inf -94.134 <.0001
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0013931 0.00306872 Inf -0.454 1.0000
## -0.0000697 0.00268726 Inf -0.026 1.0000
## -0.0003310 0.00257582 Inf -0.128 1.0000
## -0.0001370 0.00294596 Inf -0.046 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0553523 0.02870703 Inf -1.928 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0003581 0.00285151 Inf -0.126 1.0000
## -0.0004409 0.00310780 Inf -0.142 1.0000
## -0.0018852 0.00297335 Inf -0.634 1.0000
## -0.0052596 0.00744967 Inf -0.706 1.0000
## -0.0054686 0.00755974 Inf -0.723 1.0000
## -0.0031619 0.00345783 Inf -0.914 1.0000
## -0.0161567 0.00606264 Inf -2.665 0.9999
## -0.9778623 0.00388889 Inf -251.450 <.0001
## -0.9777292 0.00481767 Inf -202.946 <.0001
## -0.0228776 0.00795085 Inf -2.877 0.9982
## -0.0190774 0.00805073 Inf -2.370 1.0000
## -0.0016813 0.00293494 Inf -0.573 1.0000
## -0.0011489 0.00528089 Inf -0.218 1.0000
## -0.3073516 0.06814081 Inf -4.511 0.0584
## -0.0160319 0.00643976 Inf -2.490 1.0000
## -0.0038881 0.00344028 Inf -1.130 1.0000
## 0.0000019 0.00252484 Inf 0.001 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.1747166 0.02625183 Inf -6.655 <.0001
## -0.0194337 0.00814122 Inf -2.387 1.0000
## -0.0011488 0.00283604 Inf -0.405 1.0000
## -0.0009199 0.00516096 Inf -0.178 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0460763 0.01239678 Inf -3.717 0.5856
## -0.5796714 0.03265685 Inf -17.750 <.0001
## 0.0000298 0.00252061 Inf 0.012 1.0000
## -0.0004884 0.00302680 Inf -0.161 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0324116 0.02027852 Inf -1.598 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0515292 0.02742993 Inf -1.879 1.0000
## -0.0011380 0.00301431 Inf -0.378 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.2373689 0.06229400 Inf -3.810 0.4902
## -0.0015701 0.00484993 Inf -0.324 1.0000
## -0.0002333 0.00461681 Inf -0.051 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.3812951 0.03486465 Inf -10.936 <.0001
## -0.6218072 0.03928565 Inf -15.828 <.0001
## -0.0308671 0.00944285 Inf -3.269 0.9358
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0073191 0.00420745 Inf 1.740 1.0000
## -0.6829008 0.03283866 Inf -20.796 <.0001
## -0.1731956 0.02462841 Inf -7.032 <.0001
## -0.0012549 0.00462235 Inf -0.271 1.0000
## -0.0003515 0.00477839 Inf -0.074 1.0000
## -0.0137901 0.00698201 Inf -1.975 1.0000
## -0.0333984 0.01201670 Inf -2.779 0.9995
## -0.0017335 0.00475225 Inf -0.365 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0004757 0.00470820 Inf -0.101 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.1098068 0.04321272 Inf -2.541 1.0000
## -0.0037255 0.00516443 Inf -0.721 1.0000
## -0.0016100 0.00477233 Inf -0.337 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006503 0.00482119 Inf -0.135 1.0000
## -0.0538539 0.01415530 Inf -3.805 0.4962
## -0.0042520 0.00552388 Inf -0.770 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.2357988 0.06219993 Inf 3.791 0.5098
## 0.2371356 0.06218275 Inf 3.814 0.4871
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## -0.1439262 0.07113955 Inf -2.023 1.0000
## -0.3844383 0.07341548 Inf -5.236 0.0022
## 0.2065018 0.06271826 Inf 3.293 0.9257
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2446880 0.06215738 Inf 3.937 0.3691
## -0.4455319 0.07017935 Inf -6.348 <.0001
## 0.0641733 0.06671504 Inf 0.962 1.0000
## 0.2361141 0.06218273 Inf 3.797 0.5036
## 0.2370174 0.06219490 Inf 3.811 0.4897
## 0.2235788 0.06239837 Inf 3.583 0.7183
## 0.2039705 0.06315675 Inf 3.230 0.9504
## 0.2356354 0.06219232 Inf 3.789 0.5120
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2368932 0.06218950 Inf 3.809 0.4914
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2371401 0.06218733 Inf 3.813 0.4873
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.1275621 0.07557431 Inf 1.688 1.0000
## 0.2336434 0.06222439 Inf 3.755 0.5466
## 0.2357589 0.06219391 Inf 3.791 0.5101
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2367186 0.06219808 Inf 3.806 0.4948
## 0.1835150 0.06359681 Inf 2.886 0.9980
## 0.2331169 0.06225506 Inf 3.745 0.5572
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2371840 0.06218053 Inf 3.814 0.4862
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2076957 0.06281301 Inf 3.307 0.9192
## 0.1906912 0.06319534 Inf 3.017 0.9914
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2166042 0.06392714 Inf 3.388 0.8740
## 0.2371401 0.06218733 Inf 3.813 0.4873
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2372138 0.06217597 Inf 3.815 0.4854
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2346788 0.06221201 Inf 3.772 0.5289
## 0.2233713 0.06247856 Inf 3.575 0.7257
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2362641 0.06233846 Inf 3.790 0.5108
## 0.1596196 0.06441819 Inf 2.478 1.0000
## 0.1951723 0.06306652 Inf 3.095 0.9825
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.1995738 0.06306390 Inf 3.165 0.9690
## 0.2278450 0.06236266 Inf 3.654 0.6497
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2370421 0.06218818 Inf 3.812 0.4889
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2138527 0.06263739 Inf 3.414 0.8571
## 0.1732777 0.06447730 Inf 2.687 0.9999
## 0.2349176 0.06219854 Inf 3.777 0.5241
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2368147 0.06219020 Inf 3.808 0.4927
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.0933669 0.06655904 Inf 1.403 1.0000
## 0.1669497 0.06475836 Inf 2.578 1.0000
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2367281 0.06219098 Inf 3.806 0.4942
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.1586831 0.06445032 Inf 2.462 1.0000
## 0.2329889 0.06225725 Inf 3.742 0.5594
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2340646 0.06221922 Inf 3.762 0.5394
## 0.2371143 0.06218291 Inf 3.813 0.4874
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2353374 0.06220474 Inf 3.783 0.5177
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2371506 0.06218076 Inf 3.814 0.4867
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.1946275 0.06667914 Inf 2.919 0.9970
## 0.2358809 0.06219910 Inf 3.792 0.5084
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2325971 0.06223806 Inf 3.737 0.5647
## 0.1536802 0.06534433 Inf 2.352 1.0000
## -0.6759762 0.06388027 Inf -10.582 <.0001
## -0.7370658 0.06299191 Inf -11.701 <.0001
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2357909 0.06220001 Inf 3.791 0.5100
## 0.2371143 0.06218291 Inf 3.813 0.4874
## 0.2368530 0.06217808 Inf 3.809 0.4914
## 0.2370470 0.06219459 Inf 3.811 0.4892
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.1818317 0.06842803 Inf 2.657 0.9999
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2368259 0.06219010 Inf 3.808 0.4925
## 0.2367431 0.06220234 Inf 3.806 0.4946
## 0.2352989 0.06219518 Inf 3.783 0.5177
## 0.2319245 0.06256788 Inf 3.707 0.5958
## 0.2317155 0.06258101 Inf 3.703 0.6000
## 0.2340222 0.06221973 Inf 3.761 0.5401
## 0.2210273 0.06241481 Inf 3.541 0.7566
## -0.7406783 0.06225634 Inf -11.897 <.0001
## -0.7405452 0.06232129 Inf -11.883 <.0001
## 0.2143064 0.06262508 Inf 3.422 0.8516
## 0.2181067 0.06263855 Inf 3.482 0.8068
## 0.2355027 0.06219344 Inf 3.787 0.5143
## 0.2360352 0.06234841 Inf 3.786 0.5151
## -0.0701675 0.09220751 Inf -0.761 1.0000
## 0.2211522 0.06245260 Inf 3.541 0.7567
## 0.2332960 0.06221848 Inf 3.750 0.5520
## 0.2371859 0.06217613 Inf 3.815 0.4859
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.0624674 0.06743612 Inf 0.926 1.0000
## 0.2177504 0.06265018 Inf 3.476 0.8118
## 0.2360353 0.06218906 Inf 3.795 0.5053
## 0.2362641 0.06233846 Inf 3.790 0.5108
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.1911077 0.06334068 Inf 3.017 0.9915
## -0.3424873 0.07019144 Inf -4.879 0.0122
## 0.2372138 0.06217597 Inf 3.815 0.4854
## 0.2366957 0.06219833 Inf 3.805 0.4952
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.2047725 0.06534318 Inf 3.134 0.9757
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.2373689 0.06218539 Inf 3.817 0.4835
## 0.2373689 0.06219518 Inf 3.817 0.4841
## 0.2373689 0.06217928 Inf 3.817 0.4831
## 0.2373689 0.06229400 Inf 3.810 0.4902
## 0.1856548 0.06790231 Inf 2.734 0.9998
## 0.2360461 0.06219745 Inf 3.795 0.5056
## 0.2373689 0.06218105 Inf 3.817 0.4832
## 0.2373689 0.06217509 Inf 3.818 0.4829
## 0.2373689 0.06219132 Inf 3.817 0.4839
## 0.0013367 0.00311196 Inf 0.430 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.3797250 0.03469732 Inf -10.944 <.0001
## -0.6202371 0.03913881 Inf -15.847 <.0001
## -0.0292971 0.00879972 Inf -3.329 0.9079
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0088891 0.00247391 Inf 3.593 0.7087
## -0.6813307 0.03266332 Inf -20.859 <.0001
## -0.1716255 0.02438890 Inf -7.037 <.0001
## 0.0003152 0.00311928 Inf 0.101 1.0000
## 0.0012185 0.00334690 Inf 0.364 1.0000
## -0.0122201 0.00608752 Inf -2.007 1.0000
## -0.0318284 0.01151802 Inf -2.763 0.9996
## -0.0001634 0.00330834 Inf -0.049 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0010944 0.00324580 Inf 0.337 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## 0.0013412 0.00320227 Inf 0.419 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.1082368 0.04307642 Inf -2.513 1.0000
## -0.0021554 0.00387586 Inf -0.556 1.0000
## -0.0000399 0.00333721 Inf -0.012 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0009198 0.00340749 Inf 0.270 1.0000
## -0.0522839 0.01373375 Inf -3.807 0.4937
## -0.0026819 0.00434299 Inf -0.618 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0013852 0.00306703 Inf 0.452 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0281031 0.00945053 Inf -2.974 0.9945
## -0.0451076 0.01173330 Inf -3.844 0.4564
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0191946 0.01517744 Inf -1.265 1.0000
## 0.0013412 0.00320227 Inf 0.419 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0014150 0.00297280 Inf 0.476 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.0011200 0.00366558 Inf -0.306 1.0000
## -0.0124276 0.00686128 Inf -1.811 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0004653 0.00539583 Inf 0.086 1.0000
## -0.0761793 0.01714140 Inf -4.444 0.0753
## -0.0406265 0.01101679 Inf -3.688 0.6153
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.0362251 0.01099985 Inf -3.293 0.9254
## -0.0079538 0.00569814 Inf -1.396 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0012432 0.00321946 Inf 0.386 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.0219462 0.00819601 Inf -2.678 0.9999
## -0.0625211 0.01736155 Inf -3.601 0.7011
## -0.0008812 0.00342794 Inf -0.257 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0010159 0.00325980 Inf 0.312 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.1424320 0.02396086 Inf -5.944 <.0001
## -0.0688492 0.01837827 Inf -3.746 0.5555
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0009293 0.00327533 Inf 0.284 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.0771158 0.01726174 Inf -4.467 0.0689
## -0.0028099 0.00437496 Inf -0.642 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0017343 0.00378947 Inf -0.458 1.0000
## 0.0013155 0.00311527 Inf 0.422 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.0004614 0.00353591 Inf -0.130 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0013517 0.00307196 Inf 0.440 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0411713 0.02429191 Inf -1.695 1.0000
## 0.0000821 0.00343174 Inf 0.024 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.0032017 0.00409477 Inf -0.782 1.0000
## -0.0821186 0.02034719 Inf -4.036 0.2854
## -0.9117750 0.01489067 Inf -61.231 <.0001
## -0.9728646 0.01047508 Inf -92.874 <.0001
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0000079 0.00344880 Inf -0.002 1.0000
## 0.0013155 0.00311527 Inf 0.422 1.0000
## 0.0010542 0.00301946 Inf 0.349 1.0000
## 0.0012482 0.00334095 Inf 0.374 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0539671 0.02874831 Inf -1.877 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## 0.0010271 0.00325779 Inf 0.315 1.0000
## 0.0009443 0.00348427 Inf 0.271 1.0000
## -0.0005000 0.00336388 Inf -0.149 1.0000
## -0.0038744 0.00761299 Inf -0.509 1.0000
## -0.0040834 0.00772069 Inf -0.529 1.0000
## -0.0017766 0.00379811 Inf -0.468 1.0000
## -0.0147715 0.00625933 Inf -2.360 1.0000
## -0.9764771 0.00420985 Inf -231.951 <.0001
## -0.9763440 0.00508033 Inf -192.181 <.0001
## -0.0214924 0.00810086 Inf -2.653 0.9999
## -0.0176922 0.00819942 Inf -2.158 1.0000
## -0.0002961 0.00333011 Inf -0.089 1.0000
## 0.0002363 0.00551054 Inf 0.043 1.0000
## -0.3059664 0.06815873 Inf -4.489 0.0635
## -0.0146467 0.00662530 Inf -2.211 1.0000
## -0.0025029 0.00378172 Inf -0.662 1.0000
## 0.0013871 0.00297636 Inf 0.466 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## -0.1733314 0.02629727 Inf -6.591 <.0001
## -0.0180485 0.00828823 Inf -2.178 1.0000
## 0.0002364 0.00324367 Inf 0.073 1.0000
## 0.0004653 0.00539583 Inf 0.086 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0446911 0.01249231 Inf -3.577 0.7235
## -0.5782862 0.03269611 Inf -17.687 <.0001
## 0.0014150 0.00297280 Inf 0.476 1.0000
## 0.0008968 0.00341218 Inf 0.263 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0310264 0.02033741 Inf -1.526 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## 0.0015701 0.00316262 Inf 0.496 1.0000
## 0.0015701 0.00334946 Inf 0.469 1.0000
## 0.0015701 0.00304001 Inf 0.516 1.0000
## 0.0015701 0.00484993 Inf 0.324 1.0000
## -0.0501440 0.02747317 Inf -1.825 1.0000
## 0.0002473 0.00340065 Inf 0.073 1.0000
## 0.0015701 0.00307593 Inf 0.510 1.0000
## 0.0015701 0.00295319 Inf 0.532 1.0000
## 0.0015701 0.00327713 Inf 0.479 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.3810618 0.03466563 Inf -10.992 <.0001
## -0.6215738 0.03910938 Inf -15.893 <.0001
## -0.0306338 0.00867845 Inf -3.530 0.7666
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0075524 0.00196814 Inf 3.837 0.4634
## -0.6826674 0.03262765 Inf -20.923 <.0001
## -0.1729622 0.02434554 Inf -7.104 <.0001
## -0.0010215 0.00274388 Inf -0.372 1.0000
## -0.0001182 0.00299942 Inf -0.039 1.0000
## -0.0135568 0.00590787 Inf -2.295 1.0000
## -0.0331651 0.01142579 Inf -2.903 0.9976
## -0.0015002 0.00295741 Inf -0.507 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0002424 0.00288627 Inf -0.084 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## 0.0000045 0.00283702 Inf 0.002 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.1095735 0.04305209 Inf -2.545 1.0000
## -0.0034922 0.00358220 Inf -0.975 1.0000
## -0.0013766 0.00298958 Inf -0.460 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## -0.0004170 0.00306711 Inf -0.136 1.0000
## -0.0536206 0.01365712 Inf -3.926 0.3786
## -0.0040186 0.00408334 Inf -0.984 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0000485 0.00268340 Inf 0.018 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0294398 0.00933763 Inf -3.153 0.9717
## -0.0464444 0.01164333 Inf -3.989 0.3235
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0205313 0.01510686 Inf -1.359 1.0000
## 0.0000045 0.00283702 Inf 0.002 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0000783 0.00257514 Inf 0.030 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0024568 0.00335289 Inf -0.733 1.0000
## -0.0137643 0.00670245 Inf -2.054 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0008714 0.00518780 Inf -0.168 1.0000
## -0.0775160 0.01708024 Inf -4.538 0.0524
## -0.0419633 0.01092076 Inf -3.843 0.4582
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0375618 0.01090347 Inf -3.445 0.8352
## -0.0092906 0.00550460 Inf -1.688 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0000935 0.00285650 Inf -0.033 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0232829 0.00806491 Inf -2.887 0.9980
## -0.0638579 0.01730111 Inf -3.691 0.6119
## -0.0022179 0.00309115 Inf -0.718 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0003209 0.00290207 Inf -0.111 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.1437687 0.02391693 Inf -6.011 <.0001
## -0.0701859 0.01832122 Inf -3.831 0.4698
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0004075 0.00291958 Inf -0.140 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0784525 0.01720102 Inf -4.561 0.0479
## -0.0041466 0.00411738 Inf -1.007 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0030710 0.00348829 Inf -0.880 1.0000
## -0.0000212 0.00273847 Inf -0.008 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0017982 0.00321017 Inf -0.560 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0000150 0.00268907 Inf 0.006 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0425080 0.02424851 Inf -1.753 1.0000
## -0.0012547 0.00309466 Inf -0.405 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0045385 0.00381855 Inf -1.189 1.0000
## -0.0834553 0.02029570 Inf -4.112 0.2299
## -0.9131117 0.01480986 Inf -61.656 <.0001
## -0.9742014 0.01036328 Inf -94.005 <.0001
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0013447 0.00311363 Inf -0.432 1.0000
## -0.0000212 0.00273847 Inf -0.008 1.0000
## -0.0002825 0.00262920 Inf -0.107 1.0000
## -0.0000885 0.00299275 Inf -0.030 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0553038 0.02871180 Inf -1.926 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.0003096 0.00289981 Inf -0.107 1.0000
## -0.0003924 0.00315217 Inf -0.124 1.0000
## -0.0018367 0.00301966 Inf -0.608 1.0000
## -0.0052111 0.00746824 Inf -0.698 1.0000
## -0.0054201 0.00757804 Inf -0.715 1.0000
## -0.0031134 0.00349770 Inf -0.890 1.0000
## -0.0161082 0.00608533 Inf -2.647 0.9999
## -0.9778139 0.00392498 Inf -249.126 <.0001
## -0.9776807 0.00484685 Inf -201.715 <.0001
## -0.0228291 0.00796814 Inf -2.865 0.9985
## -0.0190289 0.00806782 Inf -2.359 1.0000
## -0.0016328 0.00298185 Inf -0.548 1.0000
## -0.0011004 0.00530711 Inf -0.207 1.0000
## -0.3073031 0.06814284 Inf -4.510 0.0586
## -0.0159834 0.00646114 Inf -2.474 1.0000
## -0.0038396 0.00348034 Inf -1.103 1.0000
## 0.0000503 0.00257928 Inf 0.020 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## -0.1746682 0.02625705 Inf -6.652 <.0001
## -0.0193852 0.00815811 Inf -2.376 1.0000
## -0.0011003 0.00288458 Inf -0.381 1.0000
## -0.0008714 0.00518780 Inf -0.168 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0460278 0.01240783 Inf -3.710 0.5930
## -0.5796229 0.03266115 Inf -17.747 <.0001
## 0.0000783 0.00257514 Inf 0.030 1.0000
## -0.0004399 0.00307234 Inf -0.143 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0323631 0.02028529 Inf -1.595 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## 0.0002333 0.00279200 Inf 0.084 1.0000
## 0.0002333 0.00300200 Inf 0.078 1.0000
## 0.0002333 0.00265231 Inf 0.088 1.0000
## 0.0002333 0.00461681 Inf 0.051 1.0000
## -0.0514807 0.02743492 Inf -1.876 1.0000
## -0.0010895 0.00306002 Inf -0.356 1.0000
## 0.0002333 0.00269341 Inf 0.087 1.0000
## 0.0002333 0.00255234 Inf 0.091 1.0000
## 0.0002333 0.00292107 Inf 0.080 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.3812951 0.03465174 Inf -11.004 <.0001
## -0.6218072 0.03909683 Inf -15.904 <.0001
## -0.0308671 0.00862363 Inf -3.579 0.7218
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0073191 0.00170357 Inf 4.296 0.1278
## -0.6829008 0.03261253 Inf -20.940 <.0001
## -0.1731956 0.02432608 Inf -7.120 <.0001
## -0.0012549 0.00256236 Inf -0.490 1.0000
## -0.0003515 0.00283418 Inf -0.124 1.0000
## -0.0137901 0.00582649 Inf -2.367 1.0000
## -0.0333984 0.01138423 Inf -2.934 0.9965
## -0.0017335 0.00278989 Inf -0.621 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0004757 0.00271417 Inf -0.175 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.1098068 0.04304112 Inf -2.551 1.0000
## -0.0037255 0.00344542 Inf -1.081 1.0000
## -0.0016100 0.00282394 Inf -0.570 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## -0.0006503 0.00290576 Inf -0.224 1.0000
## -0.0538539 0.01362248 Inf -3.953 0.3542
## -0.0042520 0.00396394 Inf -1.073 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0001849 0.00249730 Inf -0.074 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0296732 0.00928668 Inf -3.195 0.9610
## -0.0466777 0.01160264 Inf -4.023 0.2956
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0207647 0.01507533 Inf -1.377 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## -0.0001551 0.00238059 Inf -0.065 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0026901 0.00320622 Inf -0.839 1.0000
## -0.0139976 0.00663084 Inf -2.111 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## -0.0777493 0.01705259 Inf -4.559 0.0482
## -0.0421966 0.01087734 Inf -3.879 0.4225
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01085995 Inf -3.480 0.8082
## -0.0095239 0.00541694 Inf -1.758 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0003268 0.00268246 Inf -0.122 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.3812951 0.03468085 Inf -10.994 <.0001
## -0.6218072 0.03912263 Inf -15.894 <.0001
## -0.0308671 0.00873986 Inf -3.532 0.7650
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0073191 0.00221820 Inf 3.300 0.9225
## -0.6829008 0.03264346 Inf -20.920 <.0001
## -0.1731956 0.02436753 Inf -7.108 <.0001
## -0.0012549 0.00292983 Inf -0.428 1.0000
## -0.0003515 0.00317030 Inf -0.111 1.0000
## -0.0137901 0.00599719 Inf -2.299 1.0000
## -0.0333984 0.01147253 Inf -2.911 0.9973
## -0.0017335 0.00313077 Inf -0.554 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0004757 0.00306349 Inf -0.155 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0002288 0.00301710 Inf -0.076 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1098068 0.04306456 Inf -2.550 1.0000
## -0.0037255 0.00372681 Inf -1.000 1.0000
## -0.0016100 0.00316116 Inf -0.509 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0006503 0.00323445 Inf -0.201 1.0000
## -0.0538539 0.01369636 Inf -3.932 0.3733
## -0.0042520 0.00421082 Inf -1.010 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0001849 0.00287311 Inf -0.064 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0296732 0.00939471 Inf -3.159 0.9704
## -0.0466777 0.01168929 Inf -3.993 0.3199
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0207647 0.01514212 Inf -1.371 1.0000
## -0.0002288 0.00301710 Inf -0.076 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0001551 0.00277227 Inf -0.056 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0026901 0.00350686 Inf -0.767 1.0000
## -0.0139976 0.00678131 Inf -2.064 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## -0.0777493 0.01711167 Inf -4.544 0.0513
## -0.0421966 0.01096973 Inf -3.847 0.4542
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0377951 0.01095248 Inf -3.451 0.8309
## -0.0095239 0.00560014 Inf -1.701 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00303543 Inf -0.108 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.2405121 0.05219094 Inf -4.608 0.0396
## 0.3504279 0.03562912 Inf 9.835 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3886142 0.03461434 Inf 11.227 <.0001
## -0.3016057 0.04752838 Inf -6.346 <.0001
## 0.2080995 0.04227074 Inf 4.923 0.0100
## 0.3800402 0.03466627 Inf 10.963 <.0001
## 0.3809436 0.03468751 Inf 10.982 <.0001
## 0.3675050 0.03505804 Inf 10.483 <.0001
## 0.3478966 0.03639592 Inf 9.559 <.0001
## 0.3795616 0.03468379 Inf 10.943 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3808194 0.03467790 Inf 10.982 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3810663 0.03467386 Inf 10.990 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.2714883 0.05520480 Inf 4.918 0.0103
## 0.3775696 0.03474248 Inf 10.868 <.0001
## 0.3796851 0.03468655 Inf 10.946 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3806448 0.03469340 Inf 10.972 <.0001
## 0.3274411 0.03715655 Inf 8.812 <.0001
## 0.3770431 0.03479768 Inf 10.835 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3811102 0.03466163 Inf 10.995 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3516219 0.03579542 Inf 9.823 <.0001
## 0.3346174 0.03646457 Inf 9.177 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3605304 0.03771417 Inf 9.560 <.0001
## 0.3810663 0.03467386 Inf 10.990 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3811400 0.03465342 Inf 10.999 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3786050 0.03471967 Inf 10.905 <.0001
## 0.3672975 0.03520064 Inf 10.434 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3801903 0.03494475 Inf 10.880 <.0001
## 0.3035458 0.03854633 Inf 7.875 <.0001
## 0.3390985 0.03624038 Inf 9.357 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3434999 0.03623525 Inf 9.480 <.0001
## 0.3717712 0.03499258 Inf 10.624 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3809682 0.03467545 Inf 10.987 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3577788 0.03548488 Inf 10.083 <.0001
## 0.3172039 0.03864474 Inf 8.208 <.0001
## 0.3788438 0.03469539 Inf 10.919 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3807409 0.03467921 Inf 10.979 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.2372931 0.04202520 Inf 5.646 0.0002
## 0.3108759 0.03911206 Inf 7.948 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3806543 0.03468067 Inf 10.976 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3026093 0.03859999 Inf 7.840 <.0001
## 0.3769151 0.03480168 Inf 10.830 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3779907 0.03473296 Inf 10.883 <.0001
## 0.3810405 0.03466593 Inf 10.992 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3792636 0.03470623 Inf 10.928 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3810768 0.03466207 Inf 10.994 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3385537 0.04221483 Inf 8.020 <.0001
## 0.3798071 0.03469578 Inf 10.947 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3765233 0.03476757 Inf 10.830 <.0001
## 0.2976064 0.04007493 Inf 7.426 <.0001
## -0.5320500 0.03760060 Inf -14.150 <.0001
## -0.5931396 0.03608021 Inf -16.439 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3797171 0.03469747 Inf 10.944 <.0001
## 0.3810405 0.03466593 Inf 10.992 <.0001
## 0.3807792 0.03465745 Inf 10.987 <.0001
## 0.3809732 0.03468694 Inf 10.983 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3257579 0.04492726 Inf 7.251 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3807521 0.03467902 Inf 10.979 <.0001
## 0.3806693 0.03470103 Inf 10.970 <.0001
## 0.3792250 0.03468912 Inf 10.932 <.0001
## 0.3758507 0.03535496 Inf 10.631 <.0001
## 0.3756417 0.03537831 Inf 10.618 <.0001
## 0.3779484 0.03473390 Inf 10.881 <.0001
## 0.3649535 0.03508826 Inf 10.401 <.0001
## -0.5967521 0.03478181 Inf -17.157 <.0001
## -0.5966190 0.03489787 Inf -17.096 <.0001
## 0.3582326 0.03546303 Inf 10.102 <.0001
## 0.3620329 0.03548570 Inf 10.202 <.0001
## 0.3794289 0.03468587 Inf 10.939 <.0001
## 0.3799613 0.03496264 Inf 10.868 <.0001
## 0.0737587 0.07640435 Inf 0.965 1.0000
## 0.3650783 0.03515539 Inf 10.385 <.0001
## 0.3772222 0.03473210 Inf 10.861 <.0001
## 0.3811121 0.03465372 Inf 10.998 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.2063936 0.04339981 Inf 4.756 0.0213
## 0.3616765 0.03550633 Inf 10.186 <.0001
## 0.3799615 0.03467769 Inf 10.957 <.0001
## 0.3801903 0.03494475 Inf 10.880 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3350339 0.03671583 Inf 9.125 <.0001
## -0.1985611 0.04755080 Inf -4.176 0.1895
## 0.3811400 0.03465342 Inf 10.999 <.0001
## 0.3806219 0.03469386 Inf 10.971 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3486987 0.04007005 Inf 8.702 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.3812951 0.03467022 Inf 10.998 <.0001
## 0.3812951 0.03468776 Inf 10.992 <.0001
## 0.3812951 0.03465925 Inf 11.001 <.0001
## 0.3812951 0.03486465 Inf 10.936 <.0001
## 0.3295810 0.04412220 Inf 7.470 <.0001
## 0.3799723 0.03469272 Inf 10.953 <.0001
## 0.3812951 0.03466242 Inf 11.000 <.0001
## 0.3812951 0.03465174 Inf 11.004 <.0001
## 0.3812951 0.03468085 Inf 10.994 <.0001
## 0.5909400 0.03998412 Inf 14.779 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6291262 0.03905508 Inf 16.109 <.0001
## -0.0610936 0.05083991 Inf -1.202 1.0000
## 0.4486116 0.04600243 Inf 9.752 <.0001
## 0.6205523 0.03911098 Inf 15.866 <.0001
## 0.6214556 0.03912889 Inf 15.882 <.0001
## 0.6080170 0.03946852 Inf 15.405 <.0001
## 0.5884087 0.04066960 Inf 14.468 <.0001
## 0.6200736 0.03912697 Inf 15.848 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6213315 0.03912050 Inf 15.883 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6215783 0.03911666 Inf 15.890 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5120003 0.05811437 Inf 8.810 <.0001
## 0.6180817 0.03918089 Inf 15.775 <.0001
## 0.6201972 0.03912931 Inf 15.850 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6211568 0.03913442 Inf 15.872 <.0001
## 0.5679532 0.04135521 Inf 13.734 <.0001
## 0.6175552 0.03923032 Inf 15.742 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6216223 0.03910578 Inf 15.896 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5921340 0.04013201 Inf 14.755 <.0001
## 0.5751295 0.04073373 Inf 14.119 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6010425 0.04184915 Inf 14.362 <.0001
## 0.6215783 0.03911666 Inf 15.890 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6216521 0.03909847 Inf 15.900 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6191171 0.03915970 Inf 15.810 <.0001
## 0.6078095 0.03959537 Inf 15.351 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6207024 0.03935787 Inf 15.771 <.0001
## 0.5440578 0.04260948 Inf 12.768 <.0001
## 0.5796105 0.04053242 Inf 14.300 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.5840120 0.04052695 Inf 14.410 <.0001
## 0.6122832 0.03940753 Inf 15.537 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6214803 0.03911817 Inf 15.887 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.5982909 0.03985304 Inf 15.012 <.0001
## 0.5577159 0.04269808 Inf 13.062 <.0001
## 0.6193559 0.03913795 Inf 15.825 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6212530 0.03912174 Inf 15.880 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.4778051 0.04577866 Inf 10.437 <.0001
## 0.5513879 0.04312176 Inf 12.787 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6211664 0.03912313 Inf 15.877 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.5431213 0.04265804 Inf 12.732 <.0001
## 0.6174272 0.03923398 Inf 15.737 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6185028 0.03917206 Inf 15.789 <.0001
## 0.6215526 0.03910966 Inf 15.893 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6197756 0.03914716 Inf 15.832 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6215888 0.03910620 Inf 15.895 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5790658 0.04595228 Inf 12.601 <.0001
## 0.6203192 0.03913737 Inf 15.850 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6170354 0.03920406 Inf 15.739 <.0001
## 0.5381185 0.04399718 Inf 12.231 <.0001
## -0.2915379 0.04169364 Inf -6.992 <.0001
## -0.3526275 0.04034257 Inf -8.741 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.6202292 0.03913895 Inf 15.847 <.0001
## 0.6215526 0.03910966 Inf 15.893 <.0001
## 0.6212913 0.03910241 Inf 15.889 <.0001
## 0.6214853 0.03912835 Inf 15.883 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5662700 0.04845737 Inf 11.686 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6212642 0.03912156 Inf 15.880 <.0001
## 0.6211814 0.03914116 Inf 15.870 <.0001
## 0.6197371 0.03913203 Inf 15.837 <.0001
## 0.6163627 0.03972649 Inf 15.515 <.0001
## 0.6161537 0.03974744 Inf 15.502 <.0001
## 0.6184604 0.03917293 Inf 15.788 <.0001
## 0.6054656 0.03949685 Inf 15.329 <.0001
## -0.3562400 0.03918833 Inf -9.090 <.0001
## -0.3561069 0.03929128 Inf -9.063 <.0001
## 0.5987447 0.03983340 Inf 15.031 <.0001
## 0.6025449 0.03985186 Inf 15.120 <.0001
## 0.6199410 0.03912895 Inf 15.844 <.0001
## 0.6204734 0.03937399 Inf 15.758 <.0001
## 0.3142707 0.07852471 Inf 4.002 0.3125
## 0.6055904 0.03955643 Inf 15.310 <.0001
## 0.6177342 0.03917200 Inf 15.770 <.0001
## 0.6216242 0.03909877 Inf 15.899 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.4469057 0.04704192 Inf 9.500 <.0001
## 0.6021886 0.03987040 Inf 15.104 <.0001
## 0.6204735 0.03912117 Inf 15.860 <.0001
## 0.6207024 0.03935787 Inf 15.771 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5755460 0.04095875 Inf 14.052 <.0001
## 0.0419509 0.05086825 Inf 0.825 1.0000
## 0.6216521 0.03909847 Inf 15.900 <.0001
## 0.6211339 0.03913485 Inf 15.872 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5892107 0.04398800 Inf 13.395 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.6218072 0.03911320 Inf 15.898 <.0001
## 0.6218072 0.03912876 Inf 15.891 <.0001
## 0.6218072 0.03910348 Inf 15.902 <.0001
## 0.6218072 0.03928565 Inf 15.828 <.0001
## 0.5700931 0.04771157 Inf 11.949 <.0001
## 0.6204843 0.03913449 Inf 15.855 <.0001
## 0.6218072 0.03910629 Inf 15.900 <.0001
## 0.6218072 0.03909683 Inf 15.904 <.0001
## 0.6218072 0.03912263 Inf 15.894 <.0001
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0381862 0.00850160 Inf 4.492 0.0629
## -0.6520336 0.03367658 Inf -19.362 <.0001
## -0.1423284 0.02567595 Inf -5.543 0.0004
## 0.0296123 0.00867754 Inf 3.413 0.8582
## 0.0305156 0.00876503 Inf 3.482 0.8071
## 0.0170770 0.01010121 Inf 1.691 1.0000
## -0.0025313 0.01404075 Inf -0.180 1.0000
## 0.0291336 0.00874567 Inf 3.331 0.9069
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0303914 0.00872649 Inf 3.483 0.8062
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0306383 0.00871126 Inf 3.517 0.7777
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## -0.0789397 0.04381535 Inf -1.802 1.0000
## 0.0271416 0.00896952 Inf 3.026 0.9907
## 0.0292572 0.00875705 Inf 3.341 0.9018
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0302168 0.00878731 Inf 3.439 0.8398
## -0.0229868 0.01590197 Inf -1.446 1.0000
## 0.0266152 0.00917951 Inf 2.899 0.9977
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0306823 0.00866261 Inf 3.542 0.7560
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0011940 0.01240391 Inf 0.096 1.0000
## -0.0158106 0.01421205 Inf -1.112 1.0000
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0101025 0.01717868 Inf 0.588 1.0000
## 0.0306383 0.00871126 Inf 3.517 0.7777
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0307121 0.00862981 Inf 3.559 0.7407
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0281770 0.00888389 Inf 3.172 0.9673
## 0.0168695 0.01058519 Inf 1.594 1.0000
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0297624 0.00973106 Inf 3.058 0.9873
## -0.0468822 0.01892102 Inf -2.478 1.0000
## -0.0113295 0.01362817 Inf -0.831 1.0000
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## -0.0069280 0.01361648 Inf -0.509 1.0000
## 0.0213432 0.00988011 Inf 2.160 1.0000
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0305403 0.00871725 Inf 3.503 0.7892
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0073509 0.01148278 Inf 0.640 1.0000
## -0.0332241 0.01912146 Inf -1.738 1.0000
## 0.0284159 0.00878927 Inf 3.233 0.9492
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0303129 0.00873144 Inf 3.472 0.8149
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## -0.1131349 0.02526732 Inf -4.478 0.0663
## -0.0395521 0.02004868 Inf -1.973 1.0000
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0302263 0.00873695 Inf 3.460 0.8243
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## -0.0478187 0.01903010 Inf -2.513 1.0000
## 0.0264872 0.00919430 Inf 2.881 0.9981
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0275628 0.00893381 Inf 3.085 0.9839
## 0.0306126 0.00867957 Inf 3.527 0.7692
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0288356 0.00883330 Inf 3.264 0.9376
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0306488 0.00866424 Inf 3.537 0.7600
## 0.0308671 0.00944285 Inf 3.269 0.9358
## -0.0118742 0.02558218 Inf -0.464 1.0000
## 0.0293791 0.00879391 Inf 3.341 0.9018
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0260953 0.00906320 Inf 2.879 0.9982
## -0.0528215 0.02186739 Inf -2.416 1.0000
## -0.8824779 0.01702529 Inf -51.833 <.0001
## -0.9435676 0.01330237 Inf -70.932 <.0001
## 0.0308671 0.00944285 Inf 3.269 0.9358
## 0.0292891 0.00880028 Inf 3.328 0.9085
## 0.0306126 0.00867957 Inf 3.527 0.7692
## 0.0303513 0.00864472 Inf 3.511 0.7829
## 0.0305453 0.00876286 Inf 3.486 0.8037
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## -0.0246700 0.02984480 Inf -0.827 1.0000
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0303242 0.00873073 Inf 3.473 0.8137
## 0.0302414 0.00881745 Inf 3.430 0.8463
## 0.0287971 0.00876572 Inf 3.285 0.9290
## 0.0254227 0.01110394 Inf 2.290 1.0000
## 0.0252137 0.01117758 Inf 2.256 1.0000
## 0.0275204 0.00893735 Inf 3.079 0.9847
## 0.0145256 0.01020130 Inf 1.424 1.0000
## -0.9471801 0.00920809 Inf -102.864 <.0001
## -0.9470469 0.00963754 Inf -98.266 <.0001
## 0.0078047 0.01141556 Inf 0.684 1.0000
## 0.0116049 0.01149026 Inf 1.010 1.0000
## 0.0290010 0.00875349 Inf 3.313 0.9161
## 0.0295334 0.00979445 Inf 3.015 0.9916
## -0.2766693 0.06863479 Inf -4.031 0.2892
## 0.0146504 0.01043005 Inf 1.405 1.0000
## 0.0267942 0.00892820 Inf 3.001 0.9927
## 0.0306841 0.00863093 Inf 3.555 0.7441
## 0.0308671 0.00873986 Inf 3.532 0.7650
## -0.1440344 0.02749527 Inf -5.239 0.0022
## 0.0112486 0.01155335 Inf 0.974 1.0000
## 0.0295335 0.00872276 Inf 3.386 0.8756
## 0.0297624 0.00973106 Inf 3.058 0.9873
## 0.0308671 0.00944285 Inf 3.269 0.9358
## -0.0153940 0.01484498 Inf -1.037 1.0000
## -0.5489891 0.03369991 Inf -16.291 <.0001
## 0.0307121 0.00862981 Inf 3.559 0.7407
## 0.0301939 0.00878905 Inf 3.435 0.8422
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## -0.0017293 0.02186553 Inf -0.079 1.0000
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0308671 0.00869757 Inf 3.549 0.7497
## 0.0308671 0.00876724 Inf 3.521 0.7746
## 0.0308671 0.00865374 Inf 3.567 0.7333
## 0.0308671 0.00944285 Inf 3.269 0.9358
## -0.0208469 0.02861898 Inf -0.728 1.0000
## 0.0295443 0.00878238 Inf 3.364 0.8888
## 0.0308671 0.00866643 Inf 3.562 0.7381
## 0.0308671 0.00862363 Inf 3.579 0.7218
## 0.0308671 0.00873986 Inf 3.532 0.7650
## 0.0073191 0.00420745 Inf 1.740 1.0000
## -0.6829008 0.03283866 Inf -20.796 <.0001
## -0.1731956 0.02462841 Inf -7.032 <.0001
## -0.0012549 0.00462235 Inf -0.271 1.0000
## -0.0003515 0.00477839 Inf -0.074 1.0000
## -0.0137901 0.00698201 Inf -1.975 1.0000
## -0.0333984 0.01201670 Inf -2.779 0.9995
## -0.0017335 0.00475225 Inf -0.365 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0004757 0.00470820 Inf -0.101 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.1098068 0.04321272 Inf -2.541 1.0000
## -0.0037255 0.00516443 Inf -0.721 1.0000
## -0.0016100 0.00477233 Inf -0.337 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006503 0.00482119 Inf -0.135 1.0000
## -0.0538539 0.01415530 Inf -3.805 0.4962
## -0.0042520 0.00552388 Inf -0.770 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.6902198 0.03255990 Inf -21.198 <.0001
## -0.1805147 0.02428397 Inf -7.433 <.0001
## -0.0085739 0.00198881 Inf -4.311 0.1215
## -0.0076706 0.00232277 Inf -3.302 0.9212
## -0.0211092 0.00562427 Inf -3.753 0.5483
## -0.0407175 0.01129305 Inf -3.606 0.6969
## -0.0090526 0.00227752 Inf -3.975 0.3355
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0077948 0.00217559 Inf -3.583 0.7185
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0075479 0.00210799 Inf -3.581 0.7206
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.1171259 0.04301866 Inf -2.723 0.9998
## -0.0110446 0.00305451 Inf -3.616 0.6869
## -0.0089290 0.00231834 Inf -3.851 0.4494
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0079694 0.00241147 Inf -3.305 0.9201
## -0.0611730 0.01355043 Inf -4.514 0.0575
## -0.0115710 0.00363125 Inf -3.187 0.9634
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0075039 0.00189583 Inf -3.958 0.3500
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0369923 0.00917287 Inf -4.033 0.2879
## -0.0539968 0.01151677 Inf -4.689 0.0284
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0280837 0.01500205 Inf -1.872 1.0000
## -0.0075479 0.00210799 Inf -3.581 0.7206
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0074741 0.00173895 Inf -4.298 0.1271
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0100092 0.00277680 Inf -3.605 0.6978
## -0.0213167 0.00645416 Inf -3.303 0.9210
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0084239 0.00483065 Inf -1.744 1.0000
## -0.0850684 0.01699625 Inf -5.005 0.0068
## -0.0495157 0.01078465 Inf -4.591 0.0424
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0451142 0.01076585 Inf -4.190 0.1810
## -0.0168430 0.00519063 Inf -3.245 0.9450
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0076459 0.00213484 Inf -3.581 0.7198
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0308353 0.00786917 Inf -3.918 0.3856
## -0.0714103 0.01721775 Inf -4.147 0.2068
## -0.0097703 0.00245296 Inf -3.983 0.3284
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0078733 0.00219706 Inf -3.584 0.7178
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.1513211 0.02385555 Inf -6.343 <.0001
## -0.0777383 0.01824278 Inf -4.261 0.1439
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0079599 0.00222074 Inf -3.584 0.7171
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0860049 0.01711762 Inf -5.024 0.0062
## -0.0116990 0.00366996 Inf -3.188 0.9631
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0106234 0.00294183 Inf -3.611 0.6915
## -0.0075737 0.00197357 Inf -3.838 0.4631
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0093506 0.00259900 Inf -3.598 0.7043
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0075374 0.00190412 Inf -3.958 0.3497
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0500605 0.02418759 Inf -2.070 1.0000
## -0.0088071 0.00245162 Inf -3.592 0.7095
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0120909 0.00333281 Inf -3.628 0.6752
## -0.0910078 0.02022510 Inf -4.500 0.0609
## -0.9206641 0.01464416 Inf -62.869 <.0001
## -0.9817538 0.01014781 Inf -96.745 <.0001
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0088971 0.00247606 Inf -3.593 0.7087
## -0.0075737 0.00197357 Inf -3.838 0.4631
## -0.0078349 0.00182114 Inf -4.302 0.1253
## -0.0076409 0.00231395 Inf -3.302 0.9213
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0628562 0.02866129 Inf -2.193 1.0000
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0078620 0.00219399 Inf -3.583 0.7179
## -0.0079448 0.00251862 Inf -3.154 0.9713
## -0.0093891 0.00235990 Inf -3.979 0.3322
## -0.0127635 0.00723315 Inf -1.765 1.0000
## -0.0129725 0.00734684 Inf -1.766 1.0000
## -0.0106658 0.00295318 Inf -3.612 0.6910
## -0.0236607 0.00581433 Inf -4.069 0.2600
## -0.9853663 0.00332680 Inf -296.191 <.0001
## -0.9852332 0.00437617 Inf -225.136 <.0001
## -0.0303815 0.00776959 Inf -3.910 0.3932
## -0.0265813 0.00786840 Inf -3.378 0.8803
## -0.0091852 0.00231001 Inf -3.976 0.3342
## -0.0086528 0.00495927 Inf -1.745 1.0000
## -0.3148555 0.06811829 Inf -4.622 0.0374
## -0.0235358 0.00620639 Inf -3.792 0.5086
## -0.0113920 0.00293601 Inf -3.880 0.4217
## -0.0075021 0.00174533 Inf -4.298 0.1269
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.1822206 0.02619989 Inf -6.955 <.0001
## -0.0269376 0.00796129 Inf -3.384 0.8770
## -0.0086527 0.00217936 Inf -3.970 0.3394
## -0.0084239 0.00483065 Inf -1.744 1.0000
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0535803 0.01228907 Inf -4.360 0.1024
## -0.5871753 0.03259795 Inf -18.013 <.0001
## -0.0074741 0.00173895 Inf -4.298 0.1271
## -0.0079923 0.00241826 Inf -3.305 0.9200
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0399155 0.02021065 Inf -1.975 1.0000
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## -0.0073191 0.00204523 Inf -3.579 0.7225
## -0.0073191 0.00232373 Inf -3.150 0.9724
## -0.0073191 0.00185000 Inf -3.956 0.3516
## -0.0073191 0.00420745 Inf -1.740 1.0000
## -0.0590332 0.02738183 Inf -2.156 1.0000
## -0.0086419 0.00240671 Inf -3.591 0.7110
## -0.0073191 0.00190845 Inf -3.835 0.4656
## -0.0073191 0.00170357 Inf -4.296 0.1278
## -0.0073191 0.00221820 Inf -3.300 0.9225
## 0.5097052 0.04064031 Inf 12.542 <.0001
## 0.6816459 0.03262987 Inf 20.890 <.0001
## 0.6825492 0.03265107 Inf 20.904 <.0001
## 0.6691106 0.03306052 Inf 20.239 <.0001
## 0.6495023 0.03448787 Inf 18.833 <.0001
## 0.6811673 0.03264919 Inf 20.863 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6824251 0.03264105 Inf 20.907 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6826719 0.03263638 Inf 20.918 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.5730939 0.05397004 Inf 10.619 <.0001
## 0.6791753 0.03271433 Inf 20.761 <.0001
## 0.6812908 0.03265194 Inf 20.865 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6822505 0.03265779 Inf 20.891 <.0001
## 0.6290468 0.03529480 Inf 17.823 <.0001
## 0.6786488 0.03277366 Inf 20.707 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6827159 0.03262332 Inf 20.927 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6532276 0.03385193 Inf 19.297 <.0001
## 0.6362231 0.03456426 Inf 18.407 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6621361 0.03587002 Inf 18.459 <.0001
## 0.6826719 0.03263638 Inf 20.918 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6827457 0.03261455 Inf 20.934 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6802107 0.03268867 Inf 20.809 <.0001
## 0.6689031 0.03321189 Inf 20.140 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6817960 0.03292536 Inf 20.707 <.0001
## 0.6051514 0.03675681 Inf 16.464 <.0001
## 0.6407042 0.03432657 Inf 18.665 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6451056 0.03431985 Inf 18.797 <.0001
## 0.6733769 0.03298684 Inf 20.413 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6825739 0.03263822 Inf 20.913 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6593845 0.03352008 Inf 19.671 <.0001
## 0.6188096 0.03685935 Inf 16.788 <.0001
## 0.6804495 0.03266254 Inf 20.833 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6823466 0.03264256 Inf 20.904 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.5388987 0.04038733 Inf 13.343 <.0001
## 0.6124815 0.03734940 Inf 16.399 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6822600 0.03264425 Inf 20.900 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6042149 0.03681310 Inf 16.413 <.0001
## 0.6785208 0.03277808 Inf 20.700 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6795964 0.03270364 Inf 20.780 <.0001
## 0.6826462 0.03262800 Inf 20.922 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6808693 0.03267346 Inf 20.839 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6826825 0.03262383 Inf 20.926 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6401594 0.04058387 Inf 15.774 <.0001
## 0.6814128 0.03266157 Inf 20.863 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6781290 0.03274237 Inf 20.711 <.0001
## 0.5992121 0.03835685 Inf 15.622 <.0001
## -0.2304443 0.03567300 Inf -6.460 <.0001
## -0.2915339 0.03408844 Inf -8.552 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6813228 0.03266349 Inf 20.859 <.0001
## 0.6826462 0.03262800 Inf 20.922 <.0001
## 0.6823849 0.03261938 Inf 20.920 <.0001
## 0.6825789 0.03265042 Inf 20.906 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6273636 0.04340034 Inf 14.455 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6823578 0.03264235 Inf 20.904 <.0001
## 0.6822750 0.03266585 Inf 20.886 <.0001
## 0.6808307 0.03265534 Inf 20.849 <.0001
## 0.6774563 0.03336629 Inf 20.304 <.0001
## 0.6772473 0.03339128 Inf 20.282 <.0001
## 0.6795541 0.03270470 Inf 20.778 <.0001
## 0.6665592 0.03309478 Inf 20.141 <.0001
## -0.2951464 0.03271508 Inf -9.022 <.0001
## -0.2950133 0.03283828 Inf -8.984 <.0001
## 0.6598383 0.03349667 Inf 19.699 <.0001
## 0.6636385 0.03351812 Inf 19.799 <.0001
## 0.6810346 0.03265159 Inf 20.858 <.0001
## 0.6815670 0.03294469 Inf 20.688 <.0001
## 0.3753643 0.07550707 Inf 4.971 0.0080
## 0.6666840 0.03316584 Inf 20.102 <.0001
## 0.6788278 0.03270378 Inf 20.757 <.0001
## 0.6827178 0.03261492 Inf 20.933 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.5079993 0.04181328 Inf 12.149 <.0001
## 0.6632822 0.03354021 Inf 19.776 <.0001
## 0.6815671 0.03264211 Inf 20.880 <.0001
## 0.6817960 0.03292536 Inf 20.707 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6366396 0.03482914 Inf 18.279 <.0001
## 0.1030445 0.04606806 Inf 2.237 1.0000
## 0.6827457 0.03261455 Inf 20.934 <.0001
## 0.6822275 0.03265831 Inf 20.890 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6503044 0.03834497 Inf 16.959 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.6829008 0.03263216 Inf 20.927 <.0001
## 0.6829008 0.03265080 Inf 20.915 <.0001
## 0.6829008 0.03262051 Inf 20.935 <.0001
## 0.6829008 0.03283866 Inf 20.796 <.0001
## 0.6311867 0.04256593 Inf 14.828 <.0001
## 0.6815780 0.03265807 Inf 20.870 <.0001
## 0.6829008 0.03262387 Inf 20.933 <.0001
## 0.6829008 0.03261253 Inf 20.940 <.0001
## 0.6829008 0.03264346 Inf 20.920 <.0001
## 0.1719407 0.02434511 Inf 7.063 <.0001
## 0.1728440 0.02437653 Inf 7.091 <.0001
## 0.1594054 0.02488715 Inf 6.405 <.0001
## 0.1397971 0.02672895 Inf 5.230 0.0022
## 0.1714621 0.02436943 Inf 7.036 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1727199 0.02436269 Inf 7.090 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1729667 0.02435726 Inf 7.101 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.0633888 0.04936655 Inf 1.284 1.0000
## 0.1694701 0.02445047 Inf 6.931 <.0001
## 0.1715856 0.02437353 Inf 7.040 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1725453 0.02438452 Inf 7.076 <.0001
## 0.1193416 0.02775154 Inf 4.300 0.1261
## 0.1689436 0.02452823 Inf 6.888 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1730107 0.02433991 Inf 7.108 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1435224 0.02590669 Inf 5.540 0.0004
## 0.1265179 0.02681907 Inf 4.717 0.0251
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1524309 0.02850305 Inf 5.348 0.0012
## 0.1729667 0.02435726 Inf 7.101 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1730405 0.02432825 Inf 7.113 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1705055 0.02441928 Inf 6.982 <.0001
## 0.1591979 0.02508747 Inf 6.346 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1720908 0.02474023 Inf 6.956 <.0001
## 0.0954463 0.02958503 Inf 3.226 0.9515
## 0.1309990 0.02651435 Inf 4.941 0.0092
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1354004 0.02650843 Inf 5.108 0.0041
## 0.1636717 0.02479851 Inf 6.600 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1728687 0.02435939 Inf 7.097 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1496793 0.02547872 Inf 5.875 0.0001
## 0.1091044 0.02971366 Inf 3.672 0.6313
## 0.1707443 0.02438504 Inf 7.002 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1726414 0.02436445 Inf 7.086 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.0291936 0.03399585 Inf 0.859 1.0000
## 0.1027763 0.03031863 Inf 3.390 0.8730
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1725548 0.02436642 Inf 7.082 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.0945098 0.02965490 Inf 3.187 0.9633
## 0.1688156 0.02453376 Inf 6.881 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1698912 0.02443743 Inf 6.952 <.0001
## 0.1729410 0.02434594 Inf 7.103 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1711641 0.02440099 Inf 7.015 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1729773 0.02434048 Inf 7.107 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1304542 0.03423056 Inf 3.811 0.4896
## 0.1717076 0.02438681 Inf 7.041 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1684238 0.02448490 Inf 6.879 <.0001
## 0.0895069 0.03155077 Inf 2.837 0.9989
## -0.7401495 0.02841581 Inf -26.047 <.0001
## -0.8012391 0.02635291 Inf -30.404 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1716176 0.02438910 Inf 7.037 <.0001
## 0.1729410 0.02434594 Inf 7.103 <.0001
## 0.1726797 0.02433351 Inf 7.096 <.0001
## 0.1728737 0.02437575 Inf 7.092 <.0001
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1176584 0.03752315 Inf 3.136 0.9753
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1726526 0.02436420 Inf 7.086 <.0001
## 0.1725698 0.02439540 Inf 7.074 <.0001
## 0.1711255 0.02437660 Inf 7.020 <.0001
## 0.1677511 0.02531133 Inf 6.628 <.0001
## 0.1675422 0.02534370 Inf 6.611 <.0001
## 0.1698489 0.02443872 Inf 6.950 <.0001
## 0.1568540 0.02492779 Inf 6.292 <.0001
## -0.8048516 0.02454177 Inf -32.795 <.0001
## -0.8047185 0.02470612 Inf -32.572 <.0001
## 0.1501331 0.02544851 Inf 5.899 0.0001
## 0.1539334 0.02548228 Inf 6.041 <.0001
## 0.1713294 0.02437223 Inf 7.030 <.0001
## 0.1718618 0.02476521 Inf 6.940 <.0001
## -0.1343408 0.07230548 Inf -1.858 1.0000
## 0.1569788 0.02502228 Inf 6.274 <.0001
## 0.1691226 0.02443531 Inf 6.921 <.0001
## 0.1730126 0.02432865 Inf 7.111 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## -0.0017059 0.03568307 Inf -0.048 1.0000
## 0.1535770 0.02551077 Inf 6.020 <.0001
## 0.1718620 0.02436126 Inf 7.055 <.0001
## 0.1720908 0.02474023 Inf 6.956 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1269344 0.02715979 Inf 4.674 0.0302
## -0.4066606 0.04065906 Inf -10.002 <.0001
## 0.1730405 0.02432825 Inf 7.113 <.0001
## 0.1725224 0.02438514 Inf 7.075 <.0001
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1405992 0.03154991 Inf 4.456 0.0719
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.1731956 0.02435239 Inf 7.112 <.0001
## 0.1731956 0.02437736 Inf 7.105 <.0001
## 0.1731956 0.02433677 Inf 7.117 <.0001
## 0.1731956 0.02462841 Inf 7.032 <.0001
## 0.1214815 0.03655575 Inf 3.323 0.9111
## 0.1718728 0.02438267 Inf 7.049 <.0001
## 0.1731956 0.02434128 Inf 7.115 <.0001
## 0.1731956 0.02432608 Inf 7.120 <.0001
## 0.1731956 0.02436753 Inf 7.108 <.0001
## 0.0009033 0.00300774 Inf 0.300 1.0000
## -0.0125353 0.00590883 Inf -2.121 1.0000
## -0.0321436 0.01142498 Inf -2.813 0.9992
## -0.0004787 0.00296502 Inf -0.161 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0007792 0.00289484 Inf 0.269 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## 0.0010260 0.00284589 Inf 0.361 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.1085520 0.04305169 Inf -2.521 1.0000
## -0.0024706 0.00358755 Inf -0.689 1.0000
## -0.0003551 0.00299717 Inf -0.118 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0006045 0.00307507 Inf 0.197 1.0000
## -0.0525991 0.01365596 Inf -3.852 0.4492
## -0.0029971 0.00408783 Inf -0.733 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0010700 0.00269281 Inf 0.397 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0284183 0.00933685 Inf -3.044 0.9890
## -0.0454228 0.01164210 Inf -3.902 0.4013
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0195098 0.01510679 Inf -1.291 1.0000
## 0.0010260 0.00284589 Inf 0.361 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0010998 0.00258496 Inf 0.425 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0014352 0.00335912 Inf -0.427 1.0000
## -0.0127428 0.00670326 Inf -1.901 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0001501 0.00519235 Inf 0.029 1.0000
## -0.0764945 0.01707918 Inf -4.479 0.0660
## -0.0409418 0.01091958 Inf -3.749 0.5522
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0365403 0.01090244 Inf -3.352 0.8959
## -0.0082691 0.00550655 Inf -1.502 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0009280 0.00286524 Inf 0.324 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0222614 0.00806451 Inf -2.760 0.9996
## -0.0628364 0.01730010 Inf -3.632 0.6710
## -0.0011964 0.00309802 Inf -0.386 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0007007 0.00291054 Inf 0.241 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.1427472 0.02391634 Inf -5.969 <.0001
## -0.0691644 0.01832025 Inf -3.775 0.5258
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0006141 0.00292795 Inf 0.210 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0774310 0.01719996 Inf -4.502 0.0604
## -0.0031251 0.00412178 Inf -0.758 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0020495 0.00349398 Inf -0.587 1.0000
## 0.0010003 0.00274764 Inf 0.364 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0007767 0.00321702 Inf -0.241 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0010365 0.00269843 Inf 0.384 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0414865 0.02424798 Inf -1.711 1.0000
## -0.0002331 0.00310207 Inf -0.075 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0035170 0.00382314 Inf -0.920 1.0000
## -0.0824338 0.02029480 Inf -4.062 0.2656
## -0.9120902 0.01481660 Inf -61.559 <.0001
## -0.9731798 0.01037030 Inf -93.843 <.0001
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0003231 0.00312094 Inf -0.104 1.0000
## 0.0010003 0.00274764 Inf 0.364 1.0000
## 0.0007390 0.00263857 Inf 0.280 1.0000
## 0.0009330 0.00300110 Inf 0.311 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0542823 0.02871123 Inf -1.891 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## 0.0007119 0.00290829 Inf 0.245 1.0000
## 0.0006291 0.00315993 Inf 0.199 1.0000
## -0.0008152 0.00302692 Inf -0.269 1.0000
## -0.0041896 0.00747044 Inf -0.561 1.0000
## -0.0043986 0.00758018 Inf -0.580 1.0000
## -0.0020919 0.00350336 Inf -0.597 1.0000
## -0.0150867 0.00608582 Inf -2.479 1.0000
## -0.9767923 0.00394228 Inf -247.773 <.0001
## -0.9766592 0.00486091 Inf -200.921 <.0001
## -0.0218076 0.00796778 Inf -2.737 0.9997
## -0.0180074 0.00806785 Inf -2.232 1.0000
## -0.0006113 0.00298932 Inf -0.204 1.0000
## -0.0000789 0.00531149 Inf -0.015 1.0000
## -0.3062816 0.06814299 Inf -4.495 0.0621
## -0.0149619 0.00646162 Inf -2.316 1.0000
## -0.0028181 0.00348568 Inf -0.808 1.0000
## 0.0010719 0.00258906 Inf 0.414 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.1736466 0.02625666 Inf -6.613 <.0001
## -0.0183637 0.00815810 Inf -2.251 1.0000
## -0.0000788 0.00289261 Inf -0.027 1.0000
## 0.0001501 0.00519235 Inf 0.029 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0450063 0.01240669 Inf -3.628 0.6754
## -0.5786014 0.03266285 Inf -17.714 <.0001
## 0.0010998 0.00258496 Inf 0.425 1.0000
## 0.0005816 0.00308027 Inf 0.189 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0313416 0.02028485 Inf -1.545 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## 0.0012549 0.00280116 Inf 0.448 1.0000
## 0.0012549 0.00301052 Inf 0.417 1.0000
## 0.0012549 0.00266196 Inf 0.471 1.0000
## 0.0012549 0.00462235 Inf 0.271 1.0000
## -0.0504592 0.02743436 Inf -1.839 1.0000
## -0.0000680 0.00306760 Inf -0.022 1.0000
## 0.0012549 0.00270291 Inf 0.464 1.0000
## 0.0012549 0.00256236 Inf 0.490 1.0000
## 0.0012549 0.00292983 Inf 0.428 1.0000
## -0.0134386 0.00603460 Inf -2.227 1.0000
## -0.0330469 0.01149168 Inf -2.876 0.9982
## -0.0013820 0.00320370 Inf -0.431 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0001242 0.00313823 Inf -0.040 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## 0.0001227 0.00309301 Inf 0.040 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.1094553 0.04306960 Inf -2.541 1.0000
## -0.0033740 0.00378798 Inf -0.891 1.0000
## -0.0012584 0.00323342 Inf -0.389 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## -0.0002988 0.00330530 Inf -0.090 1.0000
## -0.0535024 0.01371223 Inf -3.902 0.4011
## -0.0039004 0.00426498 Inf -0.915 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0001667 0.00295274 Inf 0.056 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0293216 0.00941816 Inf -3.113 0.9794
## -0.0463262 0.01170794 Inf -3.957 0.3511
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0204131 0.01515682 Inf -1.347 1.0000
## 0.0001227 0.00309301 Inf 0.040 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0001965 0.00285472 Inf 0.069 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0023386 0.00357196 Inf -0.655 1.0000
## -0.0136461 0.00681441 Inf -2.003 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0007532 0.00533206 Inf -0.141 1.0000
## -0.0773978 0.01712433 Inf -4.520 0.0564
## -0.0418451 0.01098963 Inf -3.808 0.4930
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0374436 0.01097247 Inf -3.413 0.8582
## -0.0091724 0.00564050 Inf -1.626 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0000247 0.00311088 Inf 0.008 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0231647 0.00815807 Inf -2.839 0.9989
## -0.0637397 0.01734463 Inf -3.675 0.6282
## -0.0020997 0.00332750 Inf -0.631 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0002027 0.00315276 Inf -0.064 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.1436505 0.02394845 Inf -5.998 <.0001
## -0.0700677 0.01836233 Inf -3.816 0.4848
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0002893 0.00316888 Inf -0.091 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0783343 0.01724479 Inf -4.542 0.0515
## -0.0040284 0.00429758 Inf -0.937 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0029528 0.00369932 Inf -0.798 1.0000
## 0.0000970 0.00300287 Inf 0.032 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0016800 0.00343838 Inf -0.489 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0001332 0.00295789 Inf 0.045 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0423898 0.02427961 Inf -1.746 1.0000
## -0.0011365 0.00333083 Inf -0.341 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0044203 0.00401218 Inf -1.102 1.0000
## -0.0833371 0.02033281 Inf -4.099 0.2391
## -0.9129935 0.01486161 Inf -61.433 <.0001
## -0.9740832 0.01043680 Inf -93.332 <.0001
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0012265 0.00334846 Inf -0.366 1.0000
## 0.0000970 0.00300287 Inf 0.032 1.0000
## -0.0001643 0.00290355 Inf -0.057 1.0000
## 0.0000297 0.00323644 Inf 0.009 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0551856 0.02873805 Inf -1.920 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0001914 0.00315068 Inf -0.061 1.0000
## -0.0002742 0.00338438 Inf -0.081 1.0000
## -0.0017185 0.00326123 Inf -0.527 1.0000
## -0.0050929 0.00756905 Inf -0.673 1.0000
## -0.0053019 0.00767741 Inf -0.691 1.0000
## -0.0029952 0.00370819 Inf -0.808 1.0000
## -0.0159900 0.00620839 Inf -2.576 1.0000
## -0.9776957 0.00411505 Inf -237.590 <.0001
## -0.9775625 0.00500201 Inf -195.434 <.0001
## -0.0227109 0.00806242 Inf -2.817 0.9992
## -0.0189107 0.00816100 Inf -2.317 1.0000
## -0.0015146 0.00322626 Inf -0.469 1.0000
## -0.0009822 0.00544821 Inf -0.180 1.0000
## -0.3071849 0.06815395 Inf -4.507 0.0592
## -0.0158652 0.00657717 Inf -2.412 1.0000
## -0.0037214 0.00369178 Inf -1.008 1.0000
## 0.0001685 0.00285845 Inf 0.059 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.1745500 0.02628578 Inf -6.640 <.0001
## -0.0192670 0.00825027 Inf -2.335 1.0000
## -0.0009821 0.00313661 Inf -0.313 1.0000
## -0.0007532 0.00533206 Inf -0.141 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0459096 0.01246848 Inf -3.682 0.6210
## -0.5795047 0.03268449 Inf -17.730 <.0001
## 0.0001965 0.00285472 Inf 0.069 1.0000
## -0.0003217 0.00331015 Inf -0.097 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0322449 0.02032248 Inf -1.587 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## 0.0003515 0.00305178 Inf 0.115 1.0000
## 0.0003515 0.00324502 Inf 0.108 1.0000
## 0.0003515 0.00292453 Inf 0.120 1.0000
## 0.0003515 0.00477839 Inf 0.074 1.0000
## -0.0513625 0.02746240 Inf -1.870 1.0000
## -0.0009713 0.00329868 Inf -0.294 1.0000
## 0.0003515 0.00296185 Inf 0.119 1.0000
## 0.0003515 0.00283418 Inf 0.124 1.0000
## 0.0003515 0.00317030 Inf 0.111 1.0000
## -0.0196083 0.01253953 Inf -1.564 1.0000
## 0.0120566 0.00600948 Inf 2.006 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0133144 0.00597877 Inf 2.227 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0135613 0.00595595 Inf 2.277 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0960167 0.04335898 Inf -2.214 1.0000
## 0.0100646 0.00633471 Inf 1.589 1.0000
## 0.0121802 0.00602575 Inf 2.021 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0131398 0.00606758 Inf 2.166 1.0000
## -0.0400638 0.01459682 Inf -2.745 0.9997
## 0.0095382 0.00662964 Inf 1.439 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0136053 0.00588447 Inf 2.312 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0158831 0.01067354 Inf -1.488 1.0000
## -0.0328876 0.01273391 Inf -2.583 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0069745 0.01597131 Inf -0.437 1.0000
## 0.0135613 0.00595595 Inf 2.277 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0136351 0.00583600 Inf 2.336 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0111000 0.00621085 Inf 1.787 1.0000
## -0.0002075 0.00848093 Inf -0.024 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0126854 0.00736914 Inf 1.721 1.0000
## -0.0639592 0.01783914 Inf -3.585 0.7162
## -0.0284065 0.01207797 Inf -2.352 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## -0.0240050 0.01206378 Inf -1.990 1.0000
## 0.0042662 0.00757744 Inf 0.563 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0134633 0.00596493 Inf 2.257 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## -0.0097261 0.00958447 Inf -1.015 1.0000
## -0.0503011 0.01805123 Inf -2.787 0.9995
## 0.0113389 0.00607425 Inf 1.867 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0132359 0.00598616 Inf 2.211 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## -0.1302119 0.02446644 Inf -5.322 0.0014
## -0.0566291 0.01903088 Inf -2.976 0.9944
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0131493 0.00599439 Inf 2.194 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## -0.0648957 0.01795479 Inf -3.614 0.6883
## 0.0094102 0.00665034 Inf 1.415 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0104858 0.00628325 Inf 1.669 1.0000
## 0.0135355 0.00590956 Inf 2.290 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0117586 0.00613692 Inf 1.916 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0135718 0.00588695 Inf 2.305 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0289512 0.02479115 Inf -1.168 1.0000
## 0.0123021 0.00607894 Inf 2.024 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0090183 0.00646857 Inf 1.394 1.0000
## -0.0698985 0.02093833 Inf -3.338 0.9032
## -0.8995549 0.01575895 Inf -57.082 <.0001
## -0.9606446 0.01165487 Inf -82.424 <.0001
## 0.0137901 0.00698201 Inf 1.975 1.0000
## 0.0122121 0.00608835 Inf 2.006 1.0000
## 0.0135355 0.00590956 Inf 2.290 1.0000
## 0.0132743 0.00585886 Inf 2.266 1.0000
## 0.0134683 0.00603138 Inf 2.233 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0417470 0.02917038 Inf -1.431 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0132472 0.00598510 Inf 2.213 1.0000
## 0.0131644 0.00611109 Inf 2.154 1.0000
## 0.0117201 0.00603933 Inf 1.941 1.0000
## 0.0083457 0.00911118 Inf 0.916 1.0000
## 0.0081367 0.00920104 Inf 0.884 1.0000
## 0.0104434 0.00628836 Inf 1.661 1.0000
## -0.0025514 0.00799891 Inf -0.319 1.0000
## -0.9642571 0.00661380 Inf -145.795 <.0001
## -0.9641239 0.00719951 Inf -133.915 <.0001
## -0.0092723 0.00950357 Inf -0.976 1.0000
## -0.0054721 0.00959076 Inf -0.571 1.0000
## 0.0119240 0.00602113 Inf 1.980 1.0000
## 0.0124564 0.00745304 Inf 1.671 1.0000
## -0.2937463 0.06834140 Inf -4.298 0.1270
## -0.0024266 0.00828856 Inf -0.293 1.0000
## 0.0097172 0.00627673 Inf 1.548 1.0000
## 0.0136071 0.00583773 Inf 2.331 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## -0.1611114 0.02676008 Inf -6.021 <.0001
## -0.0058284 0.00966649 Inf -0.603 1.0000
## 0.0124565 0.00597521 Inf 2.085 1.0000
## 0.0126854 0.00736914 Inf 1.721 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0324710 0.01343660 Inf -2.417 1.0000
## -0.5660661 0.03308810 Inf -17.108 <.0001
## 0.0136351 0.00583600 Inf 2.336 1.0000
## 0.0131169 0.00607015 Inf 2.161 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0188063 0.02093305 Inf -0.898 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0137901 0.00593539 Inf 2.323 1.0000
## 0.0137901 0.00603702 Inf 2.284 1.0000
## 0.0137901 0.00587098 Inf 2.349 1.0000
## 0.0137901 0.00698201 Inf 1.975 1.0000
## -0.0379239 0.02791477 Inf -1.359 1.0000
## 0.0124673 0.00606189 Inf 2.057 1.0000
## 0.0137901 0.00588966 Inf 2.341 1.0000
## 0.0137901 0.00582649 Inf 2.367 1.0000
## 0.0137901 0.00599719 Inf 2.299 1.0000
## 0.0316649 0.01147677 Inf 2.759 0.9996
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0329227 0.01146230 Inf 2.872 0.9983
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0331696 0.01145073 Inf 2.897 0.9977
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## -0.0764084 0.04444049 Inf -1.719 1.0000
## 0.0296730 0.01164804 Inf 2.547 1.0000
## 0.0317885 0.01148545 Inf 2.768 0.9996
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0327481 0.01150865 Inf 2.846 0.9988
## -0.0204555 0.01755127 Inf -1.165 1.0000
## 0.0291465 0.01181045 Inf 2.468 1.0000
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0332136 0.01141377 Inf 2.910 0.9973
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0037253 0.01445834 Inf 0.258 1.0000
## -0.0132793 0.01603618 Inf -0.828 1.0000
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0126338 0.01871638 Inf 0.675 1.0000
## 0.0331696 0.01145073 Inf 2.897 0.9977
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0332434 0.01138890 Inf 2.919 0.9970
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0307084 0.01158234 Inf 2.651 0.9999
## 0.0194008 0.01293256 Inf 1.500 1.0000
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0322937 0.01224437 Inf 2.637 1.0000
## -0.0443509 0.02032674 Inf -2.182 1.0000
## -0.0087982 0.01552114 Inf -0.567 1.0000
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## -0.0043967 0.01551095 Inf -0.283 1.0000
## 0.0238745 0.01236241 Inf 1.931 1.0000
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0330716 0.01145528 Inf 2.887 0.9980
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0098822 0.01367650 Inf 0.723 1.0000
## -0.0306928 0.02051347 Inf -1.496 1.0000
## 0.0309472 0.01150995 Inf 2.689 0.9999
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0328442 0.01146605 Inf 2.864 0.9985
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## -0.1106036 0.02633656 Inf -4.200 0.1758
## -0.0370208 0.02138039 Inf -1.732 1.0000
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0327576 0.01147024 Inf 2.856 0.9986
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## -0.0452874 0.02042830 Inf -2.217 1.0000
## 0.0290185 0.01182194 Inf 2.455 1.0000
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0300941 0.01162061 Inf 2.590 1.0000
## 0.0331439 0.01142663 Inf 2.901 0.9976
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0313669 0.01154365 Inf 2.717 0.9998
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0331801 0.01141500 Inf 2.907 0.9974
## 0.0333984 0.01201670 Inf 2.779 0.9995
## -0.0093429 0.02663882 Inf -0.351 1.0000
## 0.0319104 0.01151359 Inf 2.772 0.9996
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0286266 0.01172023 Inf 2.442 1.0000
## -0.0502902 0.02309445 Inf -2.178 1.0000
## -0.8799466 0.01857957 Inf -47.361 <.0001
## -0.9410363 0.01523990 Inf -61.748 <.0001
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0318204 0.01151845 Inf 2.763 0.9996
## 0.0331439 0.01142663 Inf 2.901 0.9976
## 0.0328826 0.01140016 Inf 2.884 0.9980
## 0.0330766 0.01149003 Inf 2.879 0.9982
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## -0.0221387 0.03075526 Inf -0.720 1.0000
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0328555 0.01146551 Inf 2.866 0.9985
## 0.0327727 0.01153168 Inf 2.842 0.9989
## 0.0313284 0.01149202 Inf 2.726 0.9998
## 0.0279540 0.01336107 Inf 2.092 1.0000
## 0.0277450 0.01342231 Inf 2.067 1.0000
## 0.0300517 0.01162333 Inf 2.585 1.0000
## 0.0170569 0.01262014 Inf 1.352 1.0000
## -0.9446488 0.01183568 Inf -79.814 <.0001
## -0.9445156 0.01217279 Inf -77.592 <.0001
## 0.0103360 0.01362013 Inf 0.759 1.0000
## 0.0141362 0.01368296 Inf 1.033 1.0000
## 0.0315323 0.01148271 Inf 2.746 0.9997
## 0.0320647 0.01229478 Inf 2.608 1.0000
## -0.2741380 0.06903583 Inf -3.971 0.3388
## 0.0171817 0.01280576 Inf 1.342 1.0000
## 0.0293255 0.01161622 Inf 2.525 1.0000
## 0.0332154 0.01138975 Inf 2.916 0.9971
## 0.0333984 0.01147253 Inf 2.911 0.9973
## -0.1415031 0.02848109 Inf -4.968 0.0081
## 0.0137799 0.01373597 Inf 1.003 1.0000
## 0.0320648 0.01145936 Inf 2.798 0.9994
## 0.0322937 0.01224437 Inf 2.637 1.0000
## 0.0333984 0.01201670 Inf 2.779 0.9995
## -0.0128627 0.01659971 Inf -0.775 1.0000
## -0.5464578 0.03451030 Inf -15.835 <.0001
## 0.0332434 0.01138890 Inf 2.919 0.9970
## 0.0327252 0.01150997 Inf 2.843 0.9988
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## 0.0008020 0.02309298 Inf 0.035 1.0000
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0333984 0.01144035 Inf 2.919 0.9970
## 0.0333984 0.01149340 Inf 2.906 0.9975
## 0.0333984 0.01140706 Inf 2.928 0.9967
## 0.0333984 0.01201670 Inf 2.779 0.9995
## -0.0183156 0.02956723 Inf -0.619 1.0000
## 0.0320756 0.01150480 Inf 2.788 0.9995
## 0.0333984 0.01141669 Inf 2.925 0.9968
## 0.0333984 0.01138423 Inf 2.934 0.9965
## 0.0333984 0.01147253 Inf 2.911 0.9973
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0012578 0.00309792 Inf 0.406 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## 0.0015047 0.00305230 Inf 0.493 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.1080733 0.04306537 Inf -2.510 1.0000
## -0.0019920 0.00375265 Inf -0.531 1.0000
## 0.0001235 0.00319346 Inf 0.039 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0010832 0.00326692 Inf 0.332 1.0000
## -0.0521204 0.01369909 Inf -3.805 0.4960
## -0.0025184 0.00423338 Inf -0.595 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0015487 0.00291010 Inf 0.532 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0279397 0.00940024 Inf -2.972 0.9946
## -0.0449442 0.01169273 Inf -3.844 0.4570
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0190311 0.01514624 Inf -1.256 1.0000
## 0.0015047 0.00305230 Inf 0.493 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0015785 0.00281062 Inf 0.562 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.0009566 0.00353513 Inf -0.271 1.0000
## -0.0122641 0.00679213 Inf -1.806 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0006287 0.00530815 Inf 0.118 1.0000
## -0.0760158 0.01711362 Inf -4.442 0.0759
## -0.0404631 0.01097360 Inf -3.687 0.6156
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.0360616 0.01095661 Inf -3.291 0.9263
## -0.0077904 0.00561483 Inf -1.387 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0014067 0.00307032 Inf 0.458 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.0217827 0.00813804 Inf -2.677 0.9999
## -0.0623577 0.01733413 Inf -3.597 0.7047
## -0.0007177 0.00328810 Inf -0.218 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0011793 0.00311258 Inf 0.379 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.1422685 0.02394102 Inf -5.942 <.0001
## -0.0686857 0.01835237 Inf -3.743 0.5592
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0010927 0.00312883 Inf 0.349 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.0769523 0.01723416 Inf -4.465 0.0696
## -0.0026464 0.00426615 Inf -0.620 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0015708 0.00366339 Inf -0.429 1.0000
## 0.0014789 0.00296090 Inf 0.499 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.0002980 0.00340055 Inf -0.088 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0015152 0.00291530 Inf 0.520 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0410079 0.02427235 Inf -1.689 1.0000
## 0.0002455 0.00329214 Inf 0.075 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.0030383 0.00397829 Inf -0.764 1.0000
## -0.0819552 0.02032379 Inf -4.032 0.2881
## -0.9116115 0.01485991 Inf -61.347 <.0001
## -0.9727012 0.01043092 Inf -93.252 <.0001
## 0.0017335 0.00475225 Inf 0.365 1.0000
## 0.0001555 0.00330991 Inf 0.047 1.0000
## 0.0014789 0.00296090 Inf 0.499 1.0000
## 0.0012177 0.00285989 Inf 0.426 1.0000
## 0.0014117 0.00319748 Inf 0.441 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0538037 0.02873177 Inf -1.873 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## 0.0011905 0.00311047 Inf 0.383 1.0000
## 0.0011078 0.00334692 Inf 0.331 1.0000
## -0.0003365 0.00322128 Inf -0.104 1.0000
## -0.0037109 0.00755096 Inf -0.491 1.0000
## -0.0039199 0.00765952 Inf -0.512 1.0000
## -0.0016132 0.00367233 Inf -0.439 1.0000
## -0.0146081 0.00618339 Inf -2.362 1.0000
## -0.9763137 0.00409855 Inf -238.210 <.0001
## -0.9761806 0.00498850 Inf -195.686 <.0001
## -0.0213290 0.00804221 Inf -2.652 0.9999
## -0.0175287 0.00814155 Inf -2.153 1.0000
## -0.0001326 0.00318603 Inf -0.042 1.0000
## 0.0003998 0.00542471 Inf 0.074 1.0000
## -0.3058029 0.06815182 Inf -4.487 0.0640
## -0.0144832 0.00655360 Inf -2.210 1.0000
## -0.0023394 0.00365532 Inf -0.640 1.0000
## 0.0015505 0.00281438 Inf 0.551 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## -0.1731680 0.02627922 Inf -6.590 <.0001
## -0.0178850 0.00823098 Inf -2.173 1.0000
## 0.0003999 0.00309561 Inf 0.129 1.0000
## 0.0006287 0.00530815 Inf 0.118 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0445277 0.01245422 Inf -3.575 0.7256
## -0.5781227 0.03268191 Inf -17.689 <.0001
## 0.0015785 0.00281062 Inf 0.562 1.0000
## 0.0010603 0.00327181 Inf 0.324 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0308629 0.02031407 Inf -1.519 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## 0.0017335 0.00301069 Inf 0.576 1.0000
## 0.0017335 0.00320641 Inf 0.541 1.0000
## 0.0017335 0.00288163 Inf 0.602 1.0000
## 0.0017335 0.00475225 Inf 0.365 1.0000
## -0.0499806 0.02745586 Inf -1.820 1.0000
## 0.0004107 0.00325972 Inf 0.126 1.0000
## 0.0017335 0.00291950 Inf 0.594 1.0000
## 0.0017335 0.00278989 Inf 0.621 1.0000
## 0.0017335 0.00313077 Inf 0.554 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0004757 0.00470820 Inf -0.101 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.1098068 0.04321272 Inf -2.541 1.0000
## -0.0037255 0.00516443 Inf -0.721 1.0000
## -0.0016100 0.00477233 Inf -0.337 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006503 0.00482119 Inf -0.135 1.0000
## -0.0538539 0.01415530 Inf -3.805 0.4962
## -0.0042520 0.00552388 Inf -0.770 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0004757 0.00470820 Inf -0.101 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.1098068 0.04321272 Inf -2.541 1.0000
## -0.0037255 0.00516443 Inf -0.721 1.0000
## -0.0016100 0.00477233 Inf -0.337 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006503 0.00482119 Inf -0.135 1.0000
## -0.0538539 0.01415530 Inf -3.805 0.4962
## -0.0042520 0.00552388 Inf -0.770 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## 0.0002469 0.00298342 Inf 0.083 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.1093311 0.04306175 Inf -2.539 1.0000
## -0.0032498 0.00369883 Inf -0.879 1.0000
## -0.0011343 0.00312865 Inf -0.363 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## -0.0001746 0.00320295 Inf -0.055 1.0000
## -0.0533782 0.01368756 Inf -3.900 0.4031
## -0.0037763 0.00418598 Inf -0.902 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0002908 0.00283774 Inf 0.102 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0291975 0.00938231 Inf -3.112 0.9797
## -0.0462020 0.01167905 Inf -3.956 0.3519
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0202890 0.01513462 Inf -1.341 1.0000
## 0.0002469 0.00298342 Inf 0.083 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0003206 0.00273560 Inf 0.117 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0022144 0.00347734 Inf -0.637 1.0000
## -0.0135219 0.00676501 Inf -1.999 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0006291 0.00526921 Inf -0.119 1.0000
## -0.0772736 0.01710456 Inf -4.518 0.0568
## -0.0417209 0.01095886 Inf -3.807 0.4936
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0373195 0.01094167 Inf -3.411 0.8594
## -0.0090482 0.00558084 Inf -1.621 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0001489 0.00300193 Inf 0.050 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0230406 0.00811672 Inf -2.839 0.9989
## -0.0636155 0.01732512 Inf -3.672 0.6313
## -0.0019756 0.00322574 Inf -0.612 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0000785 0.00304530 Inf -0.026 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.1435263 0.02393434 Inf -5.997 <.0001
## -0.0699435 0.01834390 Inf -3.813 0.4877
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0001651 0.00306197 Inf -0.054 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0782101 0.01722516 Inf -4.540 0.0520
## -0.0039043 0.00421918 Inf -0.925 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0028287 0.00360801 Inf -0.784 1.0000
## 0.0002211 0.00288986 Inf 0.077 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0015558 0.00334002 Inf -0.466 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0002574 0.00284309 Inf 0.091 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0422657 0.02426570 Inf -1.742 1.0000
## -0.0010123 0.00322923 Inf -0.313 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0042961 0.00392807 Inf -1.094 1.0000
## -0.0832130 0.02031616 Inf -4.096 0.2410
## -0.9128694 0.01483981 Inf -61.515 <.0001
## -0.9739590 0.01040541 Inf -93.601 <.0001
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0011023 0.00324740 Inf -0.339 1.0000
## 0.0002211 0.00288986 Inf 0.077 1.0000
## -0.0000402 0.00278649 Inf -0.014 1.0000
## 0.0001538 0.00313186 Inf 0.049 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0550615 0.02872629 Inf -1.917 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.0000673 0.00304314 Inf -0.022 1.0000
## -0.0001501 0.00328450 Inf -0.046 1.0000
## -0.0015943 0.00315735 Inf -0.505 1.0000
## -0.0049687 0.00752479 Inf -0.660 1.0000
## -0.0051777 0.00763377 Inf -0.678 1.0000
## -0.0028710 0.00361710 Inf -0.794 1.0000
## -0.0158659 0.00615408 Inf -2.578 1.0000
## -0.9775715 0.00403462 Inf -242.296 <.0001
## -0.9774384 0.00493607 Inf -198.020 <.0001
## -0.0225868 0.00802059 Inf -2.816 0.9992
## -0.0187865 0.00811972 Inf -2.314 1.0000
## -0.0013905 0.00312124 Inf -0.445 1.0000
## -0.0008580 0.00538671 Inf -0.159 1.0000
## -0.3070607 0.06814904 Inf -4.506 0.0595
## -0.0157411 0.00652593 Inf -2.412 1.0000
## -0.0035972 0.00360023 Inf -0.999 1.0000
## 0.0002927 0.00273949 Inf 0.107 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## -0.1744258 0.02627295 Inf -6.639 <.0001
## -0.0191428 0.00820943 Inf -2.332 1.0000
## -0.0008579 0.00302852 Inf -0.283 1.0000
## -0.0006291 0.00526921 Inf -0.119 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0457855 0.01244136 Inf -3.680 0.6230
## -0.5793805 0.03267442 Inf -17.732 <.0001
## 0.0003206 0.00273560 Inf 0.117 1.0000
## -0.0001975 0.00320795 Inf -0.062 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0321207 0.02030588 Inf -1.582 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## 0.0004757 0.00294067 Inf 0.162 1.0000
## 0.0004757 0.00314075 Inf 0.151 1.0000
## 0.0004757 0.00280839 Inf 0.169 1.0000
## 0.0004757 0.00470820 Inf 0.101 1.0000
## -0.0512384 0.02745009 Inf -1.867 1.0000
## -0.0008471 0.00319607 Inf -0.265 1.0000
## 0.0004757 0.00284723 Inf 0.167 1.0000
## 0.0004757 0.00271417 Inf 0.175 1.0000
## 0.0004757 0.00306349 Inf 0.155 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0002288 0.00279726 Inf -0.082 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.1098068 0.04304972 Inf -2.551 1.0000
## -0.0037255 0.00355118 Inf -1.049 1.0000
## -0.0016100 0.00295206 Inf -0.545 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## -0.0006503 0.00303042 Inf -0.215 1.0000
## -0.0538539 0.01364962 Inf -3.945 0.3612
## -0.0042520 0.00405621 Inf -1.048 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0001849 0.00264132 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0296732 0.00932643 Inf -3.182 0.9647
## -0.0466777 0.01163449 Inf -4.012 0.3044
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0207647 0.01509985 Inf -1.375 1.0000
## -0.0002288 0.00279726 Inf -0.082 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## -0.0001551 0.00253125 Inf -0.061 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0026901 0.00331962 Inf -0.810 1.0000
## -0.0139976 0.00668640 Inf -2.093 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## -0.0777493 0.01707428 Inf -4.554 0.0493
## -0.0421966 0.01091131 Inf -3.867 0.4341
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0377951 0.01089397 Inf -3.469 0.8167
## -0.0095239 0.00548483 Inf -1.736 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0003268 0.00281702 Inf -0.116 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0235162 0.00805183 Inf -2.921 0.9970
## -0.0640912 0.01729520 Inf -3.706 0.5969
## -0.0024513 0.00305499 Inf -0.802 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0005542 0.00286326 Inf -0.194 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1440020 0.02391263 Inf -6.022 <.0001
## -0.0704192 0.01831566 Inf -3.845 0.4560
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0006408 0.00288102 Inf -0.222 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0786858 0.01719509 Inf -4.576 0.0451
## -0.0043800 0.00409049 Inf -1.071 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0033044 0.00345639 Inf -0.956 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0020315 0.00317532 Inf -0.640 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0002183 0.00264708 Inf -0.082 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0427414 0.02424426 Inf -1.763 1.0000
## -0.0014880 0.00305842 Inf -0.487 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.1098068 0.04304112 Inf -2.551 1.0000
## -0.0037255 0.00344542 Inf -1.081 1.0000
## -0.0016100 0.00282394 Inf -0.570 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## -0.0006503 0.00290576 Inf -0.224 1.0000
## -0.0538539 0.01362248 Inf -3.953 0.3542
## -0.0042520 0.00396394 Inf -1.073 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0001849 0.00249730 Inf -0.074 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0296732 0.00928668 Inf -3.195 0.9610
## -0.0466777 0.01160264 Inf -4.023 0.2956
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0207647 0.01507533 Inf -1.377 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## -0.0001551 0.00238059 Inf -0.065 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0026901 0.00320622 Inf -0.839 1.0000
## -0.0139976 0.00663084 Inf -2.111 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## -0.0777493 0.01705259 Inf -4.559 0.0482
## -0.0421966 0.01087734 Inf -3.879 0.4225
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01085995 Inf -3.480 0.8082
## -0.0095239 0.00541694 Inf -1.758 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0003268 0.00268246 Inf -0.122 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0002288 0.00301710 Inf -0.076 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1098068 0.04306456 Inf -2.550 1.0000
## -0.0037255 0.00372681 Inf -1.000 1.0000
## -0.0016100 0.00316116 Inf -0.509 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0006503 0.00323445 Inf -0.201 1.0000
## -0.0538539 0.01369636 Inf -3.932 0.3733
## -0.0042520 0.00421082 Inf -1.010 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0001849 0.00287311 Inf -0.064 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0296732 0.00939471 Inf -3.159 0.9704
## -0.0466777 0.01168929 Inf -3.993 0.3199
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0207647 0.01514212 Inf -1.371 1.0000
## -0.0002288 0.00301710 Inf -0.076 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0001551 0.00277227 Inf -0.056 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0026901 0.00350686 Inf -0.767 1.0000
## -0.0139976 0.00678131 Inf -2.064 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## -0.0777493 0.01711167 Inf -4.544 0.0513
## -0.0421966 0.01096973 Inf -3.847 0.4542
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0377951 0.01095248 Inf -3.451 0.8309
## -0.0095239 0.00560014 Inf -1.701 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00303543 Inf -0.108 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.1095780 0.04305872 Inf -2.545 1.0000
## -0.0034967 0.00366093 Inf -0.955 1.0000
## -0.0013811 0.00308347 Inf -0.448 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## -0.0004215 0.00315870 Inf -0.133 1.0000
## -0.0536251 0.01367799 Inf -3.921 0.3838
## -0.0040231 0.00415258 Inf -0.969 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0000440 0.00278762 Inf 0.016 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0294443 0.00936813 Inf -3.143 0.9738
## -0.0464489 0.01166780 Inf -3.981 0.3303
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0205358 0.01512573 Inf -1.358 1.0000
## 0.0000000 0.00293580 Inf 0.000 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0000738 0.00268357 Inf 0.027 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0024613 0.00343688 Inf -0.716 1.0000
## -0.0137688 0.00674486 Inf -2.041 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0008759 0.00524247 Inf -0.167 1.0000
## -0.0775205 0.01709694 Inf -4.534 0.0533
## -0.0419678 0.01094685 Inf -3.834 0.4669
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0375663 0.01092960 Inf -3.437 0.8410
## -0.0092951 0.00555616 Inf -1.673 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0000980 0.00295462 Inf -0.033 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0232874 0.00810020 Inf -2.875 0.9983
## -0.0638624 0.01731759 Inf -3.688 0.6152
## -0.0022224 0.00318205 Inf -0.698 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0003254 0.00299871 Inf -0.108 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.1437732 0.02392885 Inf -6.008 <.0001
## -0.0701904 0.01833679 Inf -3.828 0.4728
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0004120 0.00301566 Inf -0.137 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0784570 0.01721760 Inf -4.557 0.0487
## -0.0041511 0.00418606 Inf -0.992 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0030755 0.00356910 Inf -0.862 1.0000
## -0.0000257 0.00284068 Inf -0.009 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0018027 0.00329780 Inf -0.547 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0000105 0.00279308 Inf 0.004 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0425125 0.02426028 Inf -1.752 1.0000
## -0.0012592 0.00318546 Inf -0.395 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0045430 0.00389251 Inf -1.167 1.0000
## -0.0834598 0.02030975 Inf -4.109 0.2317
## -0.9131162 0.01482908 Inf -61.576 <.0001
## -0.9742059 0.01039073 Inf -93.757 <.0001
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0013492 0.00320389 Inf -0.421 1.0000
## -0.0000257 0.00284068 Inf -0.009 1.0000
## -0.0002870 0.00273549 Inf -0.105 1.0000
## -0.0000930 0.00308655 Inf -0.030 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0553083 0.02872173 Inf -1.926 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0003141 0.00299652 Inf -0.105 1.0000
## -0.0003969 0.00324136 Inf -0.122 1.0000
## -0.0018412 0.00311265 Inf -0.592 1.0000
## -0.0052156 0.00750632 Inf -0.695 1.0000
## -0.0054246 0.00761558 Inf -0.712 1.0000
## -0.0031179 0.00357829 Inf -0.871 1.0000
## -0.0161127 0.00613202 Inf -2.628 1.0000
## -0.9778184 0.00399691 Inf -244.643 <.0001
## -0.9776852 0.00490528 Inf -199.313 <.0001
## -0.0228336 0.00800385 Inf -2.853 0.9987
## -0.0190334 0.00810310 Inf -2.349 1.0000
## -0.0016373 0.00307598 Inf -0.532 1.0000
## -0.0011049 0.00536057 Inf -0.206 1.0000
## -0.3073076 0.06814702 Inf -4.509 0.0587
## -0.0159879 0.00650513 Inf -2.458 1.0000
## -0.0038441 0.00356132 Inf -1.079 1.0000
## 0.0000458 0.00268754 Inf 0.017 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.1746727 0.02626791 Inf -6.650 <.0001
## -0.0193897 0.00819300 Inf -2.367 1.0000
## -0.0011048 0.00298178 Inf -0.371 1.0000
## -0.0008759 0.00524247 Inf -0.167 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0460323 0.01243080 Inf -3.703 0.5996
## -0.5796274 0.03266988 Inf -17.742 <.0001
## 0.0000738 0.00268357 Inf 0.027 1.0000
## -0.0004444 0.00316378 Inf -0.140 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0323676 0.02029935 Inf -1.595 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0514852 0.02744532 Inf -1.876 1.0000
## -0.0010940 0.00315182 Inf -0.347 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.1098068 0.04307013 Inf -2.549 1.0000
## -0.0037255 0.00379058 Inf -0.983 1.0000
## -0.0016100 0.00323608 Inf -0.498 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0006503 0.00330772 Inf -0.197 1.0000
## -0.0538539 0.01371385 Inf -3.927 0.3779
## -0.0042520 0.00426736 Inf -0.996 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## -0.0001849 0.00295535 Inf -0.063 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0296732 0.00942019 Inf -3.150 0.9723
## -0.0466777 0.01170978 Inf -3.986 0.3258
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0207647 0.01515794 Inf -1.370 1.0000
## -0.0002288 0.00309552 Inf -0.074 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0001551 0.00285741 Inf -0.054 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0026901 0.00357455 Inf -0.753 1.0000
## -0.0139976 0.00681656 Inf -2.053 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## -0.0777493 0.01712567 Inf -4.540 0.0521
## -0.0421966 0.01099155 Inf -3.839 0.4617
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0377951 0.01097434 Inf -3.444 0.8360
## -0.0095239 0.00564277 Inf -1.688 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0003268 0.00311338 Inf -0.105 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0235162 0.00816024 Inf -2.882 0.9981
## -0.0640912 0.01734594 Inf -3.695 0.6079
## -0.0024513 0.00333024 Inf -0.736 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0005542 0.00315529 Inf -0.176 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1440020 0.02394935 Inf -6.013 <.0001
## -0.0704192 0.01836357 Inf -3.835 0.4659
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0006408 0.00317141 Inf -0.202 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0786858 0.01724612 Inf -4.563 0.0476
## -0.0043800 0.00429996 Inf -1.019 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0033044 0.00370192 Inf -0.893 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0020315 0.00344096 Inf -0.590 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## -0.0002183 0.00296051 Inf -0.074 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0427414 0.02428048 Inf -1.760 1.0000
## -0.0014880 0.00333339 Inf -0.446 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0047718 0.00401478 Inf -1.189 1.0000
## -0.0836887 0.02033394 Inf -4.116 0.2274
## -0.9133451 0.01486037 Inf -61.462 <.0001
## -0.9744347 0.01043594 Inf -93.373 <.0001
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0015780 0.00335102 Inf -0.471 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## -0.0005159 0.00290627 Inf -0.178 1.0000
## -0.0003219 0.00323885 Inf -0.099 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0555372 0.02873883 Inf -1.932 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0005430 0.00315320 Inf -0.172 1.0000
## -0.0006258 0.00338675 Inf -0.185 1.0000
## -0.0020700 0.00326395 Inf -0.634 1.0000
## -0.0054444 0.00757048 Inf -0.719 1.0000
## -0.0056534 0.00767883 Inf -0.736 1.0000
## -0.0033467 0.00371079 Inf -0.902 1.0000
## -0.0163416 0.00621089 Inf -2.631 1.0000
## -0.9780472 0.00411327 Inf -237.778 <.0001
## -0.9779141 0.00500054 Inf -195.562 <.0001
## -0.0230625 0.00806460 Inf -2.860 0.9986
## -0.0192622 0.00816302 Inf -2.360 1.0000
## -0.0018662 0.00322898 Inf -0.578 1.0000
## -0.0013337 0.00544976 Inf -0.245 1.0000
## -0.3075364 0.06815414 Inf -4.512 0.0580
## -0.0162167 0.00657952 Inf -2.465 1.0000
## -0.0040729 0.00369450 Inf -1.102 1.0000
## -0.0001830 0.00286114 Inf -0.064 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1749015 0.02628655 Inf -6.654 <.0001
## -0.0196185 0.00825228 Inf -2.377 1.0000
## -0.0013336 0.00313930 Inf -0.425 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0462612 0.01247021 Inf -3.710 0.5928
## -0.5798562 0.03268440 Inf -17.741 <.0001
## -0.0001551 0.00285741 Inf -0.054 1.0000
## -0.0006732 0.00331258 Inf -0.203 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.1098068 0.04304717 Inf -2.551 1.0000
## -0.0037255 0.00352012 Inf -1.058 1.0000
## -0.0016100 0.00291462 Inf -0.552 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## -0.0006503 0.00299396 Inf -0.217 1.0000
## -0.0538539 0.01364157 Inf -3.948 0.3591
## -0.0042520 0.00402903 Inf -1.055 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0001849 0.00259940 Inf -0.071 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0296732 0.00931465 Inf -3.186 0.9637
## -0.0466777 0.01162505 Inf -4.015 0.3018
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0207647 0.01509258 Inf -1.376 1.0000
## -0.0002288 0.00275771 Inf -0.083 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## -0.0001551 0.00248748 Inf -0.062 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0026901 0.00328636 Inf -0.819 1.0000
## -0.0139976 0.00666996 Inf -2.099 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## -0.0777493 0.01706784 Inf -4.555 0.0490
## -0.0421966 0.01090124 Inf -3.871 0.4306
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0377951 0.01088388 Inf -3.473 0.8142
## -0.0095239 0.00546476 Inf -1.743 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0003268 0.00277775 Inf -0.118 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0235162 0.00803817 Inf -2.926 0.9968
## -0.0640912 0.01728885 Inf -3.707 0.5955
## -0.0024513 0.00301882 Inf -0.812 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0005542 0.00282464 Inf -0.196 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1440020 0.02390803 Inf -6.023 <.0001
## -0.0704192 0.01830966 Inf -3.846 0.4548
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0006408 0.00284263 Inf -0.225 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0786858 0.01718870 Inf -4.578 0.0448
## -0.0043800 0.00406354 Inf -1.078 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1098068 0.04321272 Inf -2.541 1.0000
## -0.0037255 0.00516443 Inf -0.721 1.0000
## -0.0016100 0.00477233 Inf -0.337 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006503 0.00482119 Inf -0.135 1.0000
## -0.0538539 0.01415530 Inf -3.805 0.4962
## -0.0042520 0.00552388 Inf -0.770 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.1060813 0.04311099 Inf 2.461 1.0000
## 0.1081969 0.04306771 Inf 2.512 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1091565 0.04307408 Inf 2.534 1.0000
## 0.0559529 0.04506239 Inf 1.242 1.0000
## 0.1055549 0.04315507 Inf 2.446 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04307013 Inf 2.549 1.0000
## 0.1096220 0.04304891 Inf 2.546 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0801336 0.04395101 Inf 1.823 1.0000
## 0.0631291 0.04449433 Inf 1.419 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04307013 Inf 2.549 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0890422 0.04553027 Inf 1.956 1.0000
## 0.1095780 0.04305872 Inf 2.545 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1096518 0.04304233 Inf 2.548 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1071167 0.04309346 Inf 2.486 1.0000
## 0.0958092 0.04347425 Inf 2.204 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1087020 0.04327637 Inf 2.512 1.0000
## 0.0320575 0.04621393 Inf 0.694 1.0000
## 0.0676102 0.04431145 Inf 1.526 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.0720117 0.04430804 Inf 1.625 1.0000
## 0.1002829 0.04330861 Inf 2.316 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1094800 0.04305991 Inf 2.542 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.0862906 0.04370046 Inf 1.975 1.0000
## 0.0457156 0.04629645 Inf 0.987 1.0000
## 0.1073556 0.04307410 Inf 2.492 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1092526 0.04306273 Inf 2.537 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## -0.0341952 0.04915487 Inf -0.696 1.0000
## 0.0393876 0.04668699 Inf 0.844 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1091660 0.04306383 Inf 2.535 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.0311210 0.04625869 Inf 0.673 1.0000
## 0.1054269 0.04315820 Inf 2.443 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1065025 0.04310366 Inf 2.471 1.0000
## 0.1095522 0.04305231 Inf 2.545 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1077753 0.04308319 Inf 2.502 1.0000
## 0.1098068 0.04307013 Inf 2.549 1.0000
## 0.1095885 0.04304923 Inf 2.546 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0670655 0.04931758 Inf 1.360 1.0000
## 0.1083188 0.04307525 Inf 2.515 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1050350 0.04313038 Inf 2.435 1.0000
## 0.0261181 0.04749636 Inf 0.550 1.0000
## -0.8035382 0.04548397 Inf -17.666 <.0001
## -0.8646279 0.04422225 Inf -19.552 <.0001
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.1082288 0.04307653 Inf 2.512 1.0000
## 0.1095522 0.04305231 Inf 2.545 1.0000
## 0.1092910 0.04304524 Inf 2.539 1.0000
## 0.1094850 0.04306917 Inf 2.542 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04307013 Inf 2.549 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0542697 0.05165709 Inf 1.051 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1092639 0.04306259 Inf 2.537 1.0000
## 0.1091811 0.04308024 Inf 2.534 1.0000
## 0.1077368 0.04306938 Inf 2.501 1.0000
## 0.1043624 0.04360476 Inf 2.393 1.0000
## 0.1041534 0.04362354 Inf 2.388 1.0000
## 0.1064601 0.04310439 Inf 2.470 1.0000
## 0.0934652 0.04338209 Inf 2.154 1.0000
## -0.8682404 0.04316706 Inf -20.113 <.0001
## -0.8681073 0.04326072 Inf -20.067 <.0001
## 0.0867444 0.04368289 Inf 1.986 1.0000
## 0.0905446 0.04370283 Inf 2.072 1.0000
## 0.1079407 0.04306694 Inf 2.506 1.0000
## 0.1084731 0.04329062 Inf 2.506 1.0000
## -0.1977296 0.08055275 Inf -2.455 1.0000
## 0.0935901 0.04343647 Inf 2.155 1.0000
## 0.1057339 0.04310235 Inf 2.453 1.0000
## 0.1096238 0.04304255 Inf 2.547 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## -0.0650947 0.05033680 Inf -1.293 1.0000
## 0.0901883 0.04371942 Inf 2.063 1.0000
## 0.1084732 0.04306081 Inf 2.519 1.0000
## 0.1087020 0.04327637 Inf 2.512 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0635457 0.04470054 Inf 1.422 1.0000
## -0.4700494 0.05398298 Inf -8.707 <.0001
## 0.1096518 0.04304233 Inf 2.548 1.0000
## 0.1091336 0.04307443 Inf 2.534 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04307013 Inf 2.549 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0772104 0.04749652 Inf 1.626 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.1098068 0.04305600 Inf 2.550 1.0000
## 0.1098068 0.04307013 Inf 2.549 1.0000
## 0.1098068 0.04304717 Inf 2.551 1.0000
## 0.1098068 0.04321272 Inf 2.541 1.0000
## 0.0580927 0.05095878 Inf 1.140 1.0000
## 0.1084840 0.04307293 Inf 2.519 1.0000
## 0.1098068 0.04304972 Inf 2.551 1.0000
## 0.1098068 0.04304112 Inf 2.551 1.0000
## 0.1098068 0.04306456 Inf 2.550 1.0000
## 0.0021155 0.00377824 Inf 0.560 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0030752 0.00384133 Inf 0.801 1.0000
## -0.0501285 0.01384203 Inf -3.621 0.6814
## -0.0005265 0.00468854 Inf -0.112 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00379058 Inf 0.983 1.0000
## 0.0035406 0.00354328 Inf 0.999 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0259477 0.00960897 Inf -2.700 0.9999
## -0.0429522 0.01186013 Inf -3.622 0.6813
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00379058 Inf 0.983 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0170392 0.01527741 Inf -1.115 1.0000
## 0.0034967 0.00366093 Inf 0.955 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0035704 0.00346207 Inf 1.031 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0010354 0.00407030 Inf 0.254 1.0000
## -0.0102721 0.00708145 Inf -1.451 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0026207 0.00567949 Inf 0.461 1.0000
## -0.0740238 0.01722800 Inf -4.297 0.1277
## -0.0384711 0.01115202 Inf -3.450 0.8317
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## -0.0340697 0.01113557 Inf -3.060 0.9872
## -0.0057984 0.00596320 Inf -0.972 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0033986 0.00367588 Inf 0.925 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## -0.0197908 0.00837916 Inf -2.362 1.0000
## -0.0603657 0.01744716 Inf -3.460 0.8240
## 0.0012742 0.00385788 Inf 0.330 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0031713 0.00371105 Inf 0.855 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## -0.1402765 0.02402323 Inf -5.839 0.0001
## -0.0666937 0.01845911 Inf -3.613 0.6896
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0030847 0.00372462 Inf 0.828 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## -0.0749603 0.01734774 Inf -4.321 0.1174
## -0.0006545 0.00471808 Inf -0.139 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0004211 0.00418174 Inf 0.101 1.0000
## 0.0034709 0.00358506 Inf 0.968 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0016940 0.00395449 Inf 0.428 1.0000
## 0.0037255 0.00379058 Inf 0.983 1.0000
## 0.0035072 0.00354752 Inf 0.989 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0390159 0.02435352 Inf -1.602 1.0000
## 0.0022375 0.00386211 Inf 0.579 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## -0.0010463 0.00445923 Inf -0.235 1.0000
## -0.0799632 0.02042019 Inf -3.916 0.3880
## -0.9096196 0.01500580 Inf -60.618 <.0001
## -0.9707092 0.01063311 Inf -91.291 <.0001
## 0.0037255 0.00516443 Inf 0.721 1.0000
## 0.0021475 0.00387719 Inf 0.554 1.0000
## 0.0034709 0.00358506 Inf 0.968 1.0000
## 0.0032096 0.00350185 Inf 0.917 1.0000
## 0.0034036 0.00378274 Inf 0.900 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00379058 Inf 0.983 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0518117 0.02880018 Inf -1.799 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0031825 0.00370929 Inf 0.858 1.0000
## 0.0030997 0.00390963 Inf 0.793 1.0000
## 0.0016555 0.00380141 Inf 0.435 1.0000
## -0.0017189 0.00781481 Inf -0.220 1.0000
## -0.0019279 0.00791968 Inf -0.243 1.0000
## 0.0003788 0.00418954 Inf 0.090 1.0000
## -0.0126161 0.00649919 Inf -1.941 1.0000
## -0.9743217 0.00458691 Inf -212.414 <.0001
## -0.9741886 0.00539699 Inf -180.506 <.0001
## -0.0193370 0.00828619 Inf -2.334 1.0000
## -0.0155367 0.00838331 Inf -1.853 1.0000
## 0.0018593 0.00377174 Inf 0.493 1.0000
## 0.0023917 0.00578845 Inf 0.413 1.0000
## -0.3038109 0.06818138 Inf -4.456 0.0720
## -0.0124913 0.00685239 Inf -1.823 1.0000
## -0.0003474 0.00417413 Inf -0.083 1.0000
## 0.0035425 0.00346510 Inf 1.022 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## -0.1711760 0.02635440 Inf -6.495 <.0001
## -0.0158931 0.00847012 Inf -1.876 1.0000
## 0.0023919 0.00369614 Inf 0.647 1.0000
## 0.0026207 0.00567949 Inf 0.461 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0425357 0.01261153 Inf -3.373 0.8836
## -0.5761307 0.03274604 Inf -17.594 <.0001
## 0.0035704 0.00346207 Inf 1.031 1.0000
## 0.0030523 0.00384548 Inf 0.794 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00379058 Inf 0.983 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0288709 0.02041136 Inf -1.414 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0037255 0.00362653 Inf 1.027 1.0000
## 0.0037255 0.00379058 Inf 0.983 1.0000
## 0.0037255 0.00352012 Inf 1.058 1.0000
## 0.0037255 0.00516443 Inf 0.721 1.0000
## -0.0479886 0.02752749 Inf -1.743 1.0000
## 0.0024027 0.00383465 Inf 0.627 1.0000
## 0.0037255 0.00355118 Inf 1.049 1.0000
## 0.0037255 0.00344542 Inf 1.081 1.0000
## 0.0037255 0.00372681 Inf 1.000 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0009597 0.00329609 Inf 0.291 1.0000
## -0.0522440 0.01370642 Inf -3.812 0.4890
## -0.0026420 0.00425610 Inf -0.621 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00323608 Inf 0.498 1.0000
## 0.0014251 0.00294278 Inf 0.484 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0280632 0.00941081 Inf -2.982 0.9940
## -0.0450677 0.01170131 Inf -3.852 0.4494
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00323608 Inf 0.498 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0191547 0.01515276 Inf -1.264 1.0000
## 0.0013811 0.00308347 Inf 0.448 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0014549 0.00284444 Inf 0.511 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0010801 0.00356222 Inf -0.303 1.0000
## -0.0123877 0.00680653 Inf -1.820 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0005052 0.00532617 Inf 0.095 1.0000
## -0.0761394 0.01711951 Inf -4.448 0.0743
## -0.0405866 0.01098272 Inf -3.696 0.6073
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0361852 0.01096573 Inf -3.300 0.9224
## -0.0079139 0.00563214 Inf -1.405 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0012831 0.00310132 Inf 0.414 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0219063 0.00815019 Inf -2.688 0.9999
## -0.0624812 0.01733994 Inf -3.603 0.6990
## -0.0008413 0.00331720 Inf -0.254 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0010558 0.00314317 Inf 0.336 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.1423921 0.02394521 Inf -5.947 <.0001
## -0.0688093 0.01835785 Inf -3.748 0.5534
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0009692 0.00315928 Inf 0.307 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0770759 0.01724000 Inf -4.471 0.0681
## -0.0027700 0.00428871 Inf -0.646 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0016944 0.00368958 Inf -0.459 1.0000
## 0.0013554 0.00299303 Inf 0.453 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0004215 0.00342867 Inf -0.123 1.0000
## 0.0016100 0.00323608 Inf 0.498 1.0000
## 0.0013916 0.00294792 Inf 0.472 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0411314 0.02427647 Inf -1.694 1.0000
## 0.0001220 0.00332114 Inf 0.037 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0031618 0.00400248 Inf -0.790 1.0000
## -0.0820787 0.02032875 Inf -4.038 0.2841
## -0.9117351 0.01486576 Inf -61.331 <.0001
## -0.9728247 0.01043955 Inf -93.186 <.0001
## 0.0016100 0.00477233 Inf 0.337 1.0000
## 0.0000320 0.00333876 Inf 0.010 1.0000
## 0.0013554 0.00299303 Inf 0.453 1.0000
## 0.0010941 0.00289316 Inf 0.378 1.0000
## 0.0012881 0.00322726 Inf 0.399 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00323608 Inf 0.498 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0539272 0.02873527 Inf -1.877 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## 0.0010670 0.00314109 Inf 0.340 1.0000
## 0.0009842 0.00337541 Inf 0.292 1.0000
## -0.0004601 0.00325096 Inf -0.142 1.0000
## -0.0038345 0.00756375 Inf -0.507 1.0000
## -0.0040435 0.00767213 Inf -0.527 1.0000
## -0.0017367 0.00369845 Inf -0.470 1.0000
## -0.0147316 0.00619926 Inf -2.376 1.0000
## -0.9764372 0.00412060 Inf -236.965 <.0001
## -0.9763041 0.00500663 Inf -195.002 <.0001
## -0.0214525 0.00805451 Inf -2.663 0.9999
## -0.0176523 0.00815364 Inf -2.165 1.0000
## -0.0002562 0.00321601 Inf -0.080 1.0000
## 0.0002762 0.00544236 Inf 0.051 1.0000
## -0.3059265 0.06815325 Inf -4.489 0.0635
## -0.0146068 0.00656857 Inf -2.224 1.0000
## -0.0024630 0.00368161 Inf -0.669 1.0000
## 0.0014270 0.00284816 Inf 0.501 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.1732915 0.02628301 Inf -6.593 <.0001
## -0.0180086 0.00824295 Inf -2.185 1.0000
## 0.0002763 0.00312643 Inf 0.088 1.0000
## 0.0005052 0.00532617 Inf 0.095 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0446512 0.01246226 Inf -3.583 0.7184
## -0.5782463 0.03268473 Inf -17.692 <.0001
## 0.0014549 0.00284444 Inf 0.511 1.0000
## 0.0009367 0.00330094 Inf 0.284 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00323608 Inf 0.498 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0309865 0.02031898 Inf -1.525 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## 0.0016100 0.00304228 Inf 0.529 1.0000
## 0.0016100 0.00323608 Inf 0.498 1.0000
## 0.0016100 0.00291462 Inf 0.552 1.0000
## 0.0016100 0.00477233 Inf 0.337 1.0000
## -0.0501041 0.02745952 Inf -1.825 1.0000
## 0.0002872 0.00328900 Inf 0.087 1.0000
## 0.0016100 0.00295206 Inf 0.545 1.0000
## 0.0016100 0.00282394 Inf 0.570 1.0000
## 0.0016100 0.00316116 Inf 0.509 1.0000
## -0.0006503 0.00290576 Inf -0.224 1.0000
## -0.0538539 0.01362248 Inf -3.953 0.3542
## -0.0042520 0.00396394 Inf -1.073 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0001849 0.00249730 Inf -0.074 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0296732 0.00928668 Inf -3.195 0.9610
## -0.0466777 0.01160264 Inf -4.023 0.2956
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0207647 0.01507533 Inf -1.377 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## -0.0001551 0.00238059 Inf -0.065 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0026901 0.00320622 Inf -0.839 1.0000
## -0.0139976 0.00663084 Inf -2.111 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## -0.0777493 0.01705259 Inf -4.559 0.0482
## -0.0421966 0.01087734 Inf -3.879 0.4225
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01085995 Inf -3.480 0.8082
## -0.0095239 0.00541694 Inf -1.758 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0003268 0.00268246 Inf -0.122 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0532036 0.01372631 Inf -3.876 0.4256
## -0.0036016 0.00431238 Inf -0.835 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00330772 Inf 0.197 1.0000
## 0.0004655 0.00302149 Inf 0.154 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0290229 0.00943892 Inf -3.075 0.9853
## -0.0460274 0.01172447 Inf -3.926 0.3790
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00330772 Inf 0.197 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0201144 0.01516985 Inf -1.326 1.0000
## 0.0004215 0.00315870 Inf 0.133 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0004952 0.00292577 Inf 0.169 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.0020398 0.00362864 Inf -0.562 1.0000
## -0.0133473 0.00684362 Inf -1.950 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0004545 0.00537034 Inf -0.085 1.0000
## -0.0770990 0.01713557 Inf -4.499 0.0610
## -0.0415463 0.01100728 Inf -3.774 0.5266
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.0371448 0.01099019 Inf -3.380 0.8793
## -0.0088736 0.00567603 Inf -1.563 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0003235 0.00317618 Inf 0.102 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.0228659 0.00818217 Inf -2.795 0.9994
## -0.0634409 0.01735574 Inf -3.655 0.6479
## -0.0018009 0.00338831 Inf -0.532 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0000961 0.00321718 Inf 0.030 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.1433517 0.02395654 Inf -5.984 <.0001
## -0.0697689 0.01837281 Inf -3.797 0.5033
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0000095 0.00323296 Inf 0.003 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.0780355 0.01725595 Inf -4.522 0.0558
## -0.0037296 0.00434461 Inf -0.858 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0026540 0.00375399 Inf -0.707 1.0000
## 0.0003957 0.00307048 Inf 0.129 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.0013812 0.00349732 Inf -0.395 1.0000
## 0.0006503 0.00330772 Inf 0.197 1.0000
## 0.0004320 0.00302651 Inf 0.143 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0420911 0.02428760 Inf -1.733 1.0000
## -0.0008377 0.00339172 Inf -0.247 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.0041215 0.00406247 Inf -1.015 1.0000
## -0.0830384 0.02034228 Inf -4.082 0.2508
## -0.9126947 0.01487690 Inf -61.350 <.0001
## -0.9737844 0.01045779 Inf -93.116 <.0001
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0009277 0.00340901 Inf -0.272 1.0000
## 0.0003957 0.00307048 Inf 0.129 1.0000
## 0.0001345 0.00297337 Inf 0.045 1.0000
## 0.0003285 0.00329926 Inf 0.100 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00330772 Inf 0.197 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0548869 0.02874477 Inf -1.909 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## 0.0001073 0.00321514 Inf 0.033 1.0000
## 0.0000245 0.00344446 Inf 0.007 1.0000
## -0.0014197 0.00332330 Inf -0.427 1.0000
## -0.0047941 0.00759579 Inf -0.631 1.0000
## -0.0050031 0.00770376 Inf -0.649 1.0000
## -0.0026964 0.00376273 Inf -0.717 1.0000
## -0.0156913 0.00624032 Inf -2.514 1.0000
## -0.9773969 0.00416768 Inf -234.518 <.0001
## -0.9772638 0.00504541 Inf -193.694 <.0001
## -0.0224122 0.00808682 Inf -2.771 0.9996
## -0.0186119 0.00818522 Inf -2.274 1.0000
## -0.0012159 0.00328903 Inf -0.370 1.0000
## -0.0006834 0.00548566 Inf -0.125 1.0000
## -0.3068861 0.06815690 Inf -4.503 0.0602
## -0.0155664 0.00660732 Inf -2.356 1.0000
## -0.0034226 0.00374646 Inf -0.914 1.0000
## 0.0004673 0.00292941 Inf 0.160 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## -0.1742512 0.02629320 Inf -6.627 <.0001
## -0.0189682 0.00827421 Inf -2.292 1.0000
## -0.0006833 0.00320122 Inf -0.213 1.0000
## -0.0004545 0.00537034 Inf -0.085 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0456109 0.01248401 Inf -3.654 0.6497
## -0.5792059 0.03269105 Inf -17.718 <.0001
## 0.0004952 0.00292577 Inf 0.169 1.0000
## -0.0000229 0.00337154 Inf -0.007 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00330772 Inf 0.197 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0319461 0.02033208 Inf -1.571 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## 0.0006503 0.00311837 Inf 0.209 1.0000
## 0.0006503 0.00330772 Inf 0.197 1.0000
## 0.0006503 0.00299396 Inf 0.217 1.0000
## 0.0006503 0.00482119 Inf 0.135 1.0000
## -0.0510638 0.02746944 Inf -1.859 1.0000
## -0.0006725 0.00336017 Inf -0.200 1.0000
## 0.0006503 0.00303042 Inf 0.215 1.0000
## 0.0006503 0.00290576 Inf 0.224 1.0000
## 0.0006503 0.00323445 Inf 0.201 1.0000
## 0.0496020 0.01397875 Inf 3.548 0.7502
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01371385 Inf 3.927 0.3779
## 0.0536691 0.01364709 Inf 3.933 0.3727
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0241808 0.01627201 Inf 1.486 1.0000
## 0.0071762 0.01768739 Inf 0.406 1.0000
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01371385 Inf 3.927 0.3779
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0330893 0.02015148 Inf 1.642 1.0000
## 0.0536251 0.01367799 Inf 3.921 0.3838
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0536989 0.01362630 Inf 3.941 0.3653
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0511638 0.01378723 Inf 3.711 0.5915
## 0.0398563 0.01493576 Inf 2.669 0.9999
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0527492 0.01434857 Inf 3.676 0.6268
## -0.0238954 0.02165253 Inf -1.104 1.0000
## 0.0116573 0.01722209 Inf 0.677 1.0000
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0160588 0.01721324 Inf 0.933 1.0000
## 0.0443300 0.01444622 Inf 3.069 0.9861
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0535271 0.01368175 Inf 3.912 0.3914
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0303377 0.01558238 Inf 1.947 1.0000
## -0.0102373 0.02182806 Inf -0.469 1.0000
## 0.0514027 0.01372658 Inf 3.745 0.5570
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0532997 0.01369067 Inf 3.893 0.4093
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## -0.0901481 0.02737334 Inf -3.293 0.9254
## -0.0165653 0.02264463 Inf -0.732 1.0000
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0532131 0.01369413 Inf 3.886 0.4162
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## -0.0248319 0.02174790 Inf -1.142 1.0000
## 0.0494740 0.01398841 Inf 3.537 0.7606
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0505496 0.01381913 Inf 3.658 0.6453
## 0.0535994 0.01365781 Inf 3.924 0.3802
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0518224 0.01375504 Inf 3.768 0.5337
## 0.0538539 0.01371385 Inf 3.927 0.3779
## 0.0536356 0.01364810 Inf 3.930 0.3752
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0111126 0.02766441 Inf 0.402 1.0000
## 0.0523659 0.01373007 Inf 3.814 0.4867
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0490821 0.01390240 Inf 3.530 0.7661
## -0.0298347 0.02426950 Inf -1.229 1.0000
## -0.8594911 0.02004259 Inf -42.883 <.0001
## -0.9205808 0.01698721 Inf -54.193 <.0001
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0522759 0.01373410 Inf 3.806 0.4944
## 0.0535994 0.01365781 Inf 3.924 0.3802
## 0.0533381 0.01363554 Inf 3.912 0.3919
## 0.0535321 0.01371086 Inf 3.904 0.3988
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01371385 Inf 3.927 0.3779
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## -0.0016832 0.03164738 Inf -0.053 1.0000
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0533110 0.01369022 Inf 3.894 0.4084
## 0.0532282 0.01374564 Inf 3.872 0.4291
## 0.0517839 0.01371172 Inf 3.777 0.5244
## 0.0484095 0.01531090 Inf 3.162 0.9696
## 0.0482005 0.01536430 Inf 3.137 0.9750
## 0.0505072 0.01382140 Inf 3.654 0.6490
## 0.0375124 0.01466547 Inf 2.558 1.0000
## -0.9241933 0.01401285 Inf -65.953 <.0001
## -0.9240601 0.01429877 Inf -64.625 <.0001
## 0.0307915 0.01553301 Inf 1.982 1.0000
## 0.0345917 0.01558884 Inf 2.219 1.0000
## 0.0519878 0.01370401 Inf 3.794 0.5072
## 0.0525202 0.01439151 Inf 3.649 0.6538
## -0.2536825 0.06943922 Inf -3.653 0.6499
## 0.0376372 0.01482554 Inf 2.539 1.0000
## 0.0497810 0.01381511 Inf 3.603 0.6990
## 0.0536709 0.01362700 Inf 3.939 0.3674
## 0.0538539 0.01369636 Inf 3.932 0.3733
## -0.1210476 0.02944292 Inf -4.111 0.2304
## 0.0342354 0.01563532 Inf 2.190 1.0000
## 0.0525203 0.01368469 Inf 3.838 0.4628
## 0.0527492 0.01434857 Inf 3.676 0.6268
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0075928 0.01819989 Inf 0.417 1.0000
## -0.5260023 0.03531498 Inf -14.895 <.0001
## 0.0536989 0.01362630 Inf 3.941 0.3653
## 0.0531807 0.01372742 Inf 3.874 0.4275
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01371385 Inf 3.927 0.3779
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0212575 0.02426951 Inf 0.876 1.0000
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0538539 0.01366941 Inf 3.940 0.3663
## 0.0538539 0.01371385 Inf 3.927 0.3779
## 0.0538539 0.01364157 Inf 3.948 0.3591
## 0.0538539 0.01415530 Inf 3.805 0.4962
## 0.0021399 0.03049421 Inf 0.070 1.0000
## 0.0525311 0.01372278 Inf 3.828 0.4726
## 0.0538539 0.01364962 Inf 3.945 0.3612
## 0.0538539 0.01362248 Inf 3.953 0.3542
## 0.0538539 0.01369636 Inf 3.932 0.3733
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00426736 Inf 0.996 1.0000
## 0.0040671 0.00404925 Inf 1.004 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0254212 0.00980531 Inf -2.593 1.0000
## -0.0424257 0.01201948 Inf -3.530 0.7667
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00426736 Inf 0.996 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0165127 0.01540184 Inf -1.072 1.0000
## 0.0040231 0.00415258 Inf 0.969 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0040969 0.00397839 Inf 1.030 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0015619 0.00451718 Inf 0.346 1.0000
## -0.0097457 0.00734645 Inf -1.327 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0031472 0.00600805 Inf 0.524 1.0000
## -0.0734974 0.01733799 Inf -4.239 0.1548
## -0.0379447 0.01132140 Inf -3.352 0.8959
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## -0.0335432 0.01130526 Inf -2.967 0.9949
## -0.0052720 0.00627598 Inf -0.840 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0039251 0.00416575 Inf 0.942 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## -0.0192643 0.00860382 Inf -2.239 1.0000
## -0.0598393 0.01755579 Inf -3.409 0.8609
## 0.0018007 0.00432680 Inf 0.416 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0036978 0.00419676 Inf 0.881 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## -0.1397501 0.02410230 Inf -5.798 0.0001
## -0.0661673 0.01856181 Inf -3.565 0.7354
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0036112 0.00420875 Inf 0.858 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## -0.0744339 0.01745697 Inf -4.264 0.1426
## -0.0001280 0.00510836 Inf -0.025 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0009476 0.00461775 Inf 0.205 1.0000
## 0.0039974 0.00408584 Inf 0.978 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0022204 0.00441323 Inf 0.503 1.0000
## 0.0042520 0.00426736 Inf 0.996 1.0000
## 0.0040336 0.00405296 Inf 0.995 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0384894 0.02443154 Inf -1.575 1.0000
## 0.0027640 0.00433074 Inf 0.638 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## -0.0005198 0.00487024 Inf -0.107 1.0000
## -0.0794367 0.02051306 Inf -3.872 0.4290
## -0.9090931 0.01513552 Inf -60.064 <.0001
## -0.9701827 0.01081426 Inf -89.713 <.0001
## 0.0042520 0.00552388 Inf 0.770 1.0000
## 0.0026740 0.00434418 Inf 0.616 1.0000
## 0.0039974 0.00408584 Inf 0.978 1.0000
## 0.0037361 0.00401298 Inf 0.931 1.0000
## 0.0039301 0.00426034 Inf 0.922 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00426736 Inf 0.996 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0512852 0.02886613 Inf -1.777 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0037090 0.00419522 Inf 0.884 1.0000
## 0.0036262 0.00437333 Inf 0.829 1.0000
## 0.0021819 0.00427659 Inf 0.510 1.0000
## -0.0011925 0.00805635 Inf -0.148 1.0000
## -0.0014015 0.00815810 Inf -0.172 1.0000
## 0.0009052 0.00462480 Inf 0.196 1.0000
## -0.0120896 0.00678679 Inf -1.781 1.0000
## -0.9737952 0.00499205 Inf -195.069 <.0001
## -0.9736621 0.00574530 Inf -169.471 <.0001
## -0.0188105 0.00851333 Inf -2.210 1.0000
## -0.0150103 0.00860805 Inf -1.744 1.0000
## 0.0023858 0.00425028 Inf 0.561 1.0000
## 0.0029182 0.00611113 Inf 0.478 1.0000
## -0.3032845 0.06820944 Inf -4.446 0.0746
## -0.0119648 0.00712576 Inf -1.679 1.0000
## 0.0001790 0.00461073 Inf 0.039 1.0000
## 0.0040690 0.00398102 Inf 1.022 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## -0.1706495 0.02642656 Inf -6.457 <.0001
## -0.0153666 0.00869260 Inf -1.768 1.0000
## 0.0029183 0.00418344 Inf 0.698 1.0000
## 0.0031472 0.00600805 Inf 0.524 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0420092 0.01276151 Inf -3.292 0.9260
## -0.5756043 0.03280507 Inf -17.546 <.0001
## 0.0040969 0.00397839 Inf 1.030 1.0000
## 0.0035787 0.00431607 Inf 0.829 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00426736 Inf 0.996 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0283445 0.02050449 Inf -1.382 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0042520 0.00412233 Inf 1.031 1.0000
## 0.0042520 0.00426736 Inf 0.996 1.0000
## 0.0042520 0.00402903 Inf 1.055 1.0000
## 0.0042520 0.00552388 Inf 0.770 1.0000
## -0.0474621 0.02759650 Inf -1.720 1.0000
## 0.0029291 0.00430631 Inf 0.680 1.0000
## 0.0042520 0.00405621 Inf 1.048 1.0000
## 0.0042520 0.00396394 Inf 1.073 1.0000
## 0.0042520 0.00421082 Inf 1.010 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0001849 0.00259940 Inf -0.071 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0296732 0.00931465 Inf -3.186 0.9637
## -0.0466777 0.01162505 Inf -4.015 0.3018
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0207647 0.01509258 Inf -1.376 1.0000
## -0.0002288 0.00275771 Inf -0.083 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## -0.0001551 0.00248748 Inf -0.062 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0026901 0.00328636 Inf -0.819 1.0000
## -0.0139976 0.00666996 Inf -2.099 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## -0.0777493 0.01706784 Inf -4.555 0.0490
## -0.0421966 0.01090124 Inf -3.871 0.4306
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0377951 0.01088388 Inf -3.473 0.8142
## -0.0095239 0.00546476 Inf -1.743 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0003268 0.00277775 Inf -0.118 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0235162 0.00803817 Inf -2.926 0.9968
## -0.0640912 0.01728885 Inf -3.707 0.5955
## -0.0024513 0.00301882 Inf -0.812 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0005542 0.00282464 Inf -0.196 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1440020 0.02390803 Inf -6.023 <.0001
## -0.0704192 0.01830966 Inf -3.846 0.4548
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0006408 0.00284263 Inf -0.225 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0786858 0.01718870 Inf -4.578 0.0448
## -0.0043800 0.00406354 Inf -1.078 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0001849 0.00458661 Inf -0.040 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## -0.0001849 0.00274178 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0296732 0.00935538 Inf -3.172 0.9672
## -0.0466777 0.01165771 Inf -4.004 0.3110
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0207647 0.01511775 Inf -1.374 1.0000
## -0.0002288 0.00289231 Inf -0.079 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## -0.0001551 0.00263591 Inf -0.059 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0026901 0.00340010 Inf -0.791 1.0000
## -0.0139976 0.00672672 Inf -2.081 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## -0.0777493 0.01709011 Inf -4.549 0.0502
## -0.0421966 0.01093606 Inf -3.858 0.4426
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0377951 0.01091876 Inf -3.461 0.8228
## -0.0095239 0.00553390 Inf -1.721 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0003268 0.00291142 Inf -0.112 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0235162 0.00808534 Inf -2.909 0.9974
## -0.0640912 0.01731083 Inf -3.702 0.6003
## -0.0024513 0.00314225 Inf -0.780 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0005542 0.00295619 Inf -0.187 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1440020 0.02392393 Inf -6.019 <.0001
## -0.0704192 0.01833041 Inf -3.842 0.4591
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0006408 0.00297339 Inf -0.216 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0786858 0.01721081 Inf -4.572 0.0459
## -0.0043800 0.00415606 Inf -1.054 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0033044 0.00353375 Inf -0.935 1.0000
## -0.0002546 0.00279571 Inf -0.091 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0020315 0.00325936 Inf -0.623 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## -0.0002183 0.00274733 Inf -0.079 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0427414 0.02425541 Inf -1.762 1.0000
## -0.0014880 0.00314559 Inf -0.473 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0047718 0.00386027 Inf -1.236 1.0000
## -0.0836887 0.02030400 Inf -4.122 0.2234
## -0.9133451 0.01481938 Inf -61.632 <.0001
## -0.9744347 0.01037748 Inf -93.899 <.0001
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0015780 0.00316426 Inf -0.499 1.0000
## -0.0002546 0.00279571 Inf -0.091 1.0000
## -0.0005159 0.00268880 Inf -0.192 1.0000
## -0.0003219 0.00304522 Inf -0.106 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0555372 0.02871765 Inf -1.934 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0005430 0.00295397 Inf -0.184 1.0000
## -0.0006258 0.00320207 Inf -0.195 1.0000
## -0.0020700 0.00307191 Inf -0.674 1.0000
## -0.0054444 0.00748968 Inf -0.727 1.0000
## -0.0056534 0.00759919 Inf -0.744 1.0000
## -0.0033467 0.00354305 Inf -0.945 1.0000
## -0.0163416 0.00611215 Inf -2.674 0.9999
## -0.9780472 0.00396260 Inf -246.819 <.0001
## -0.9779141 0.00487736 Inf -200.501 <.0001
## -0.0230625 0.00798881 Inf -2.887 0.9980
## -0.0192622 0.00808815 Inf -2.382 1.0000
## -0.0018662 0.00303472 Inf -0.615 1.0000
## -0.0013337 0.00533696 Inf -0.250 1.0000
## -0.3075364 0.06814522 Inf -4.513 0.0579
## -0.0162167 0.00648640 Inf -2.500 1.0000
## -0.0040729 0.00352598 Inf -1.155 1.0000
## -0.0001830 0.00263996 Inf -0.069 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1749015 0.02626340 Inf -6.660 <.0001
## -0.0196185 0.00817823 Inf -2.399 1.0000
## -0.0013336 0.00293912 Inf -0.454 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0462612 0.01242132 Inf -3.724 0.5779
## -0.5798562 0.03266578 Inf -17.751 <.0001
## -0.0001551 0.00263591 Inf -0.059 1.0000
## -0.0006732 0.00312352 Inf -0.216 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0325964 0.02029349 Inf -1.606 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0001849 0.00264132 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0296732 0.00932643 Inf -3.182 0.9647
## -0.0466777 0.01163449 Inf -4.012 0.3044
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0207647 0.01509985 Inf -1.375 1.0000
## -0.0002288 0.00279726 Inf -0.082 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## -0.0001551 0.00253125 Inf -0.061 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0026901 0.00331962 Inf -0.810 1.0000
## -0.0139976 0.00668640 Inf -2.093 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## -0.0777493 0.01707428 Inf -4.554 0.0493
## -0.0421966 0.01091131 Inf -3.867 0.4341
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0377951 0.01089397 Inf -3.469 0.8167
## -0.0095239 0.00548483 Inf -1.736 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0003268 0.00281702 Inf -0.116 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0235162 0.00805183 Inf -2.921 0.9970
## -0.0640912 0.01729520 Inf -3.706 0.5969
## -0.0024513 0.00305499 Inf -0.802 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0005542 0.00286326 Inf -0.194 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1440020 0.02391263 Inf -6.022 <.0001
## -0.0704192 0.01831566 Inf -3.845 0.4560
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0006408 0.00288102 Inf -0.222 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0786858 0.01719509 Inf -4.576 0.0451
## -0.0043800 0.00409049 Inf -1.071 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0033044 0.00345639 Inf -0.956 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0020315 0.00317532 Inf -0.640 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0002183 0.00264708 Inf -0.082 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0427414 0.02424426 Inf -1.763 1.0000
## -0.0014880 0.00305842 Inf -0.487 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0001849 0.00249730 Inf -0.074 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0296732 0.00928668 Inf -3.195 0.9610
## -0.0466777 0.01160264 Inf -4.023 0.2956
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0207647 0.01507533 Inf -1.377 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## -0.0001551 0.00238059 Inf -0.065 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0026901 0.00320622 Inf -0.839 1.0000
## -0.0139976 0.00663084 Inf -2.111 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## -0.0777493 0.01705259 Inf -4.559 0.0482
## -0.0421966 0.01087734 Inf -3.879 0.4225
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01085995 Inf -3.480 0.8082
## -0.0095239 0.00541694 Inf -1.758 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0003268 0.00268246 Inf -0.122 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0001849 0.00287311 Inf -0.064 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0296732 0.00939471 Inf -3.159 0.9704
## -0.0466777 0.01168929 Inf -3.993 0.3199
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0207647 0.01514212 Inf -1.371 1.0000
## -0.0002288 0.00301710 Inf -0.076 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0001551 0.00277227 Inf -0.056 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0026901 0.00350686 Inf -0.767 1.0000
## -0.0139976 0.00678131 Inf -2.064 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## -0.0777493 0.01711167 Inf -4.544 0.0513
## -0.0421966 0.01096973 Inf -3.847 0.4542
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0377951 0.01095248 Inf -3.451 0.8309
## -0.0095239 0.00560014 Inf -1.701 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00303543 Inf -0.108 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## -0.0001849 0.00274178 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0296732 0.00935538 Inf -3.172 0.9672
## -0.0466777 0.01165771 Inf -4.004 0.3110
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0207647 0.01511775 Inf -1.374 1.0000
## -0.0002288 0.00289231 Inf -0.079 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## -0.0001551 0.00263591 Inf -0.059 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0026901 0.00340010 Inf -0.791 1.0000
## -0.0139976 0.00672672 Inf -2.081 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## -0.0777493 0.01709011 Inf -4.549 0.0502
## -0.0421966 0.01093606 Inf -3.858 0.4426
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0377951 0.01091876 Inf -3.461 0.8228
## -0.0095239 0.00553390 Inf -1.721 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0003268 0.00291142 Inf -0.112 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0235162 0.00808534 Inf -2.909 0.9974
## -0.0640912 0.01731083 Inf -3.702 0.6003
## -0.0024513 0.00314225 Inf -0.780 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0005542 0.00295619 Inf -0.187 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1440020 0.02392393 Inf -6.019 <.0001
## -0.0704192 0.01833041 Inf -3.842 0.4591
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0006408 0.00297339 Inf -0.216 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0786858 0.01721081 Inf -4.572 0.0459
## -0.0043800 0.00415606 Inf -1.054 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0033044 0.00353375 Inf -0.935 1.0000
## -0.0002546 0.00279571 Inf -0.091 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0020315 0.00325936 Inf -0.623 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## -0.0002183 0.00274733 Inf -0.079 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0427414 0.02425541 Inf -1.762 1.0000
## -0.0014880 0.00314559 Inf -0.473 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0047718 0.00386027 Inf -1.236 1.0000
## -0.0836887 0.02030400 Inf -4.122 0.2234
## -0.9133451 0.01481938 Inf -61.632 <.0001
## -0.9744347 0.01037748 Inf -93.899 <.0001
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0015780 0.00316426 Inf -0.499 1.0000
## -0.0002546 0.00279571 Inf -0.091 1.0000
## -0.0005159 0.00268880 Inf -0.192 1.0000
## -0.0003219 0.00304522 Inf -0.106 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0555372 0.02871765 Inf -1.934 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0005430 0.00295397 Inf -0.184 1.0000
## -0.0006258 0.00320207 Inf -0.195 1.0000
## -0.0020700 0.00307191 Inf -0.674 1.0000
## -0.0054444 0.00748968 Inf -0.727 1.0000
## -0.0056534 0.00759919 Inf -0.744 1.0000
## -0.0033467 0.00354305 Inf -0.945 1.0000
## -0.0163416 0.00611215 Inf -2.674 0.9999
## -0.9780472 0.00396260 Inf -246.819 <.0001
## -0.9779141 0.00487736 Inf -200.501 <.0001
## -0.0230625 0.00798881 Inf -2.887 0.9980
## -0.0192622 0.00808815 Inf -2.382 1.0000
## -0.0018662 0.00303472 Inf -0.615 1.0000
## -0.0013337 0.00533696 Inf -0.250 1.0000
## -0.3075364 0.06814522 Inf -4.513 0.0579
## -0.0162167 0.00648640 Inf -2.500 1.0000
## -0.0040729 0.00352598 Inf -1.155 1.0000
## -0.0001830 0.00263996 Inf -0.069 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1749015 0.02626340 Inf -6.660 <.0001
## -0.0196185 0.00817823 Inf -2.399 1.0000
## -0.0013336 0.00293912 Inf -0.454 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0462612 0.01242132 Inf -3.724 0.5779
## -0.5798562 0.03266578 Inf -17.751 <.0001
## -0.0001551 0.00263591 Inf -0.059 1.0000
## -0.0006732 0.00312352 Inf -0.216 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0325964 0.02029349 Inf -1.606 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0001849 0.00295535 Inf -0.063 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0296732 0.00942019 Inf -3.150 0.9723
## -0.0466777 0.01170978 Inf -3.986 0.3258
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0207647 0.01515794 Inf -1.370 1.0000
## -0.0002288 0.00309552 Inf -0.074 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0001551 0.00285741 Inf -0.054 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0026901 0.00357455 Inf -0.753 1.0000
## -0.0139976 0.00681656 Inf -2.053 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## -0.0777493 0.01712567 Inf -4.540 0.0521
## -0.0421966 0.01099155 Inf -3.839 0.4617
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0377951 0.01097434 Inf -3.444 0.8360
## -0.0095239 0.00564277 Inf -1.688 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0003268 0.00311338 Inf -0.105 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0235162 0.00816024 Inf -2.882 0.9981
## -0.0640912 0.01734594 Inf -3.695 0.6079
## -0.0024513 0.00333024 Inf -0.736 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0005542 0.00315529 Inf -0.176 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1440020 0.02394935 Inf -6.013 <.0001
## -0.0704192 0.01836357 Inf -3.835 0.4659
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0006408 0.00317141 Inf -0.202 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0786858 0.01724612 Inf -4.563 0.0476
## -0.0043800 0.00429996 Inf -1.019 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0033044 0.00370192 Inf -0.893 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0020315 0.00344096 Inf -0.590 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## -0.0002183 0.00296051 Inf -0.074 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0427414 0.02428048 Inf -1.760 1.0000
## -0.0014880 0.00333339 Inf -0.446 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0047718 0.00401478 Inf -1.189 1.0000
## -0.0836887 0.02033394 Inf -4.116 0.2274
## -0.9133451 0.01486037 Inf -61.462 <.0001
## -0.9744347 0.01043594 Inf -93.373 <.0001
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0015780 0.00335102 Inf -0.471 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## -0.0005159 0.00290627 Inf -0.178 1.0000
## -0.0003219 0.00323885 Inf -0.099 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0555372 0.02873883 Inf -1.932 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0005430 0.00315320 Inf -0.172 1.0000
## -0.0006258 0.00338675 Inf -0.185 1.0000
## -0.0020700 0.00326395 Inf -0.634 1.0000
## -0.0054444 0.00757048 Inf -0.719 1.0000
## -0.0056534 0.00767883 Inf -0.736 1.0000
## -0.0033467 0.00371079 Inf -0.902 1.0000
## -0.0163416 0.00621089 Inf -2.631 1.0000
## -0.9780472 0.00411327 Inf -237.778 <.0001
## -0.9779141 0.00500054 Inf -195.562 <.0001
## -0.0230625 0.00806460 Inf -2.860 0.9986
## -0.0192622 0.00816302 Inf -2.360 1.0000
## -0.0018662 0.00322898 Inf -0.578 1.0000
## -0.0013337 0.00544976 Inf -0.245 1.0000
## -0.3075364 0.06815414 Inf -4.512 0.0580
## -0.0162167 0.00657952 Inf -2.465 1.0000
## -0.0040729 0.00369450 Inf -1.102 1.0000
## -0.0001830 0.00286114 Inf -0.064 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1749015 0.02628655 Inf -6.654 <.0001
## -0.0196185 0.00825228 Inf -2.377 1.0000
## -0.0013336 0.00313930 Inf -0.425 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0462612 0.01247021 Inf -3.710 0.5928
## -0.5798562 0.03268440 Inf -17.741 <.0001
## -0.0001551 0.00285741 Inf -0.054 1.0000
## -0.0006732 0.00331258 Inf -0.203 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0294883 0.00932290 Inf -3.163 0.9694
## -0.0464928 0.01163155 Inf -3.997 0.3167
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0205798 0.01509775 Inf -1.363 1.0000
## -0.0000440 0.00278762 Inf -0.016 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0000298 0.00252061 Inf 0.012 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0025052 0.00331126 Inf -0.757 1.0000
## -0.0138128 0.00668183 Inf -2.067 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0009199 0.00516096 Inf -0.178 1.0000
## -0.0775645 0.01707223 Inf -4.543 0.0514
## -0.0420118 0.01090820 Inf -3.851 0.4495
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0376103 0.01089088 Inf -3.453 0.8290
## -0.0093391 0.00547943 Inf -1.704 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0001420 0.00280744 Inf -0.051 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0233314 0.00804783 Inf -2.899 0.9977
## -0.0639064 0.01729319 Inf -3.695 0.6074
## -0.0022664 0.00304593 Inf -0.744 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0003693 0.00285381 Inf -0.129 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.1438172 0.02391120 Inf -6.015 <.0001
## -0.0702344 0.01831375 Inf -3.835 0.4656
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0004559 0.00287161 Inf -0.159 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0785010 0.01719306 Inf -4.566 0.0470
## -0.0041951 0.00408358 Inf -1.027 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0031195 0.00344831 Inf -0.905 1.0000
## -0.0000697 0.00268726 Inf -0.026 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0018467 0.00316665 Inf -0.583 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## -0.0000335 0.00263690 Inf -0.013 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0425565 0.02424286 Inf -1.755 1.0000
## -0.0013031 0.00304947 Inf -0.427 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0045869 0.00378209 Inf -1.213 1.0000
## -0.0835038 0.02028896 Inf -4.116 0.2274
## -0.9131602 0.01480023 Inf -61.699 <.0001
## -0.9742498 0.01034964 Inf -94.134 <.0001
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0013931 0.00306872 Inf -0.454 1.0000
## -0.0000697 0.00268726 Inf -0.026 1.0000
## -0.0003310 0.00257582 Inf -0.128 1.0000
## -0.0001370 0.00294596 Inf -0.046 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0553523 0.02870703 Inf -1.928 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.0003581 0.00285151 Inf -0.126 1.0000
## -0.0004409 0.00310780 Inf -0.142 1.0000
## -0.0018852 0.00297335 Inf -0.634 1.0000
## -0.0052596 0.00744967 Inf -0.706 1.0000
## -0.0054686 0.00755974 Inf -0.723 1.0000
## -0.0031619 0.00345783 Inf -0.914 1.0000
## -0.0161567 0.00606264 Inf -2.665 0.9999
## -0.9778623 0.00388889 Inf -251.450 <.0001
## -0.9777292 0.00481767 Inf -202.946 <.0001
## -0.0228776 0.00795085 Inf -2.877 0.9982
## -0.0190774 0.00805073 Inf -2.370 1.0000
## -0.0016813 0.00293494 Inf -0.573 1.0000
## -0.0011489 0.00528089 Inf -0.218 1.0000
## -0.3073516 0.06814081 Inf -4.511 0.0584
## -0.0160319 0.00643976 Inf -2.490 1.0000
## -0.0038881 0.00344028 Inf -1.130 1.0000
## 0.0000019 0.00252484 Inf 0.001 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## -0.1747166 0.02625183 Inf -6.655 <.0001
## -0.0194337 0.00814122 Inf -2.387 1.0000
## -0.0011488 0.00283604 Inf -0.405 1.0000
## -0.0009199 0.00516096 Inf -0.178 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0460763 0.01239678 Inf -3.717 0.5856
## -0.5796714 0.03265685 Inf -17.750 <.0001
## 0.0000298 0.00252061 Inf 0.012 1.0000
## -0.0004884 0.00302680 Inf -0.161 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0324116 0.02027852 Inf -1.598 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## 0.0001849 0.00274178 Inf 0.067 1.0000
## 0.0001849 0.00295535 Inf 0.063 1.0000
## 0.0001849 0.00259940 Inf 0.071 1.0000
## 0.0001849 0.00458661 Inf 0.040 1.0000
## -0.0515292 0.02742993 Inf -1.879 1.0000
## -0.0011380 0.00301431 Inf -0.378 1.0000
## 0.0001849 0.00264132 Inf 0.070 1.0000
## 0.0001849 0.00249730 Inf 0.074 1.0000
## 0.0001849 0.00287311 Inf 0.064 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0296732 0.01005201 Inf -2.952 0.9957
## -0.0466777 0.01222382 Inf -3.819 0.4820
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0170045 0.01462487 Inf -1.163 1.0000
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0296732 0.00935538 Inf 3.172 0.9672
## 0.0296732 0.00942019 Inf 3.150 0.9723
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0089085 0.01752147 Inf 0.508 1.0000
## 0.0294443 0.00936813 Inf 3.143 0.9738
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0295181 0.00929243 Inf 3.177 0.9660
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0269831 0.00952903 Inf 2.832 0.9990
## 0.0156755 0.01113267 Inf 1.408 1.0000
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0285684 0.01032330 Inf 2.767 0.9996
## -0.0480761 0.01923311 Inf -2.500 1.0000
## -0.0125234 0.01405812 Inf -0.891 1.0000
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## -0.0081220 0.01404674 Inf -0.578 1.0000
## 0.0201493 0.01046436 Inf 1.926 1.0000
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0293463 0.00937370 Inf 3.131 0.9763
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0061569 0.01198961 Inf 0.514 1.0000
## -0.0344180 0.01943031 Inf -1.771 1.0000
## 0.0272219 0.00944086 Inf 2.883 0.9981
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0291190 0.00938691 Inf 3.102 0.9813
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## -0.1143288 0.02550180 Inf -4.483 0.0649
## -0.0407461 0.02034347 Inf -2.003 1.0000
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0290324 0.00939205 Inf 3.091 0.9830
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## -0.0490126 0.01934042 Inf -2.534 1.0000
## 0.0252932 0.00981917 Inf 2.576 1.0000
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0263688 0.00957563 Inf 2.754 0.9997
## 0.0294186 0.00933866 Inf 3.150 0.9723
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0276417 0.00948184 Inf 2.915 0.9972
## 0.0296732 0.00942019 Inf 3.150 0.9723
## 0.0294549 0.00932442 Inf 3.159 0.9703
## 0.0296732 0.01005201 Inf 2.952 0.9957
## -0.0130682 0.02581379 Inf -0.506 1.0000
## 0.0281852 0.00944512 Inf 2.984 0.9939
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0249014 0.00969654 Inf 2.568 1.0000
## -0.0540155 0.02213798 Inf -2.440 1.0000
## -0.8836719 0.01736899 Inf -50.876 <.0001
## -0.9447615 0.01374023 Inf -68.759 <.0001
## 0.0296732 0.01005201 Inf 2.952 0.9957
## 0.0280952 0.00945106 Inf 2.973 0.9946
## 0.0294186 0.00933866 Inf 3.150 0.9723
## 0.0291573 0.00930630 Inf 3.133 0.9758
## 0.0293513 0.00941614 Inf 3.117 0.9788
## 0.0296732 0.00935538 Inf 3.172 0.9672
## 0.0296732 0.00942019 Inf 3.150 0.9723
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## -0.0258640 0.03004360 Inf -0.861 1.0000
## 0.0296732 0.00935538 Inf 3.172 0.9672
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0291302 0.00938625 Inf 3.103 0.9811
## 0.0290474 0.00946698 Inf 3.068 0.9861
## 0.0276031 0.00941892 Inf 2.931 0.9966
## 0.0242288 0.01162668 Inf 2.084 1.0000
## 0.0240198 0.01169703 Inf 2.053 1.0000
## 0.0263265 0.00957893 Inf 2.748 0.9997
## 0.0133316 0.01076840 Inf 1.238 1.0000
## -0.9483740 0.00983022 Inf -96.475 <.0001
## -0.9482409 0.01023359 Inf -92.660 <.0001
## 0.0066107 0.01192524 Inf 0.554 1.0000
## 0.0104110 0.01199667 Inf 0.868 1.0000
## 0.0278070 0.00940752 Inf 2.956 0.9955
## 0.0283394 0.01038308 Inf 2.729 0.9998
## -0.2778632 0.06872133 Inf -4.043 0.2797
## 0.0134564 0.01098535 Inf 1.225 1.0000
## 0.0256002 0.00957044 Inf 2.675 0.9999
## 0.0294902 0.00929348 Inf 3.173 0.9669
## 0.0296732 0.00939471 Inf 3.159 0.9704
## -0.1452283 0.02771086 Inf -5.241 0.0021
## 0.0100546 0.01205711 Inf 0.834 1.0000
## 0.0283396 0.00937890 Inf 3.022 0.9911
## 0.0285684 0.01032330 Inf 2.767 0.9996
## 0.0296732 0.01005201 Inf 2.952 0.9957
## -0.0165880 0.01524067 Inf -1.088 1.0000
## -0.5501830 0.03387533 Inf -16.241 <.0001
## 0.0295181 0.00929243 Inf 3.177 0.9660
## 0.0290000 0.00944054 Inf 3.072 0.9857
## 0.0296732 0.00935538 Inf 3.172 0.9672
## 0.0296732 0.00942019 Inf 3.150 0.9723
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## -0.0029232 0.02213599 Inf -0.132 1.0000
## 0.0296732 0.00935538 Inf 3.172 0.9672
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0296732 0.00935538 Inf 3.172 0.9672
## 0.0296732 0.00942019 Inf 3.150 0.9723
## 0.0296732 0.00931465 Inf 3.186 0.9637
## 0.0296732 0.01005201 Inf 2.952 0.9957
## -0.0220409 0.02882623 Inf -0.765 1.0000
## 0.0283504 0.00943437 Inf 3.005 0.9924
## 0.0296732 0.00932643 Inf 3.182 0.9647
## 0.0296732 0.00928668 Inf 3.195 0.9610
## 0.0296732 0.00939471 Inf 3.159 0.9704
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0466777 0.01165771 Inf 4.004 0.3110
## 0.0466777 0.01170978 Inf 3.986 0.3258
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0259130 0.01884620 Inf 1.375 1.0000
## 0.0464489 0.01166780 Inf 3.981 0.3303
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0465226 0.01160715 Inf 4.008 0.3076
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0439876 0.01179600 Inf 3.729 0.5731
## 0.0326801 0.01312107 Inf 2.491 1.0000
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0455729 0.01244726 Inf 3.661 0.6419
## -0.0310716 0.02044407 Inf -1.520 1.0000
## 0.0044811 0.01567542 Inf 0.286 1.0000
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0088825 0.01566561 Inf 0.567 1.0000
## 0.0371538 0.01256063 Inf 2.958 0.9954
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0463509 0.01167222 Inf 3.971 0.3387
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0231614 0.01385322 Inf 1.672 1.0000
## -0.0174135 0.02062986 Inf -0.844 1.0000
## 0.0442264 0.01172502 Inf 3.772 0.5292
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0461235 0.01168270 Inf 3.948 0.3589
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## -0.0973243 0.02642764 Inf -3.683 0.6204
## -0.0237415 0.02149202 Inf -1.105 1.0000
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0460369 0.01168677 Inf 3.939 0.3668
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## -0.0320081 0.02054506 Inf -1.558 1.0000
## 0.0422977 0.01203073 Inf 3.516 0.7788
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0433733 0.01183335 Inf 3.665 0.6379
## 0.0464231 0.01164414 Inf 3.987 0.3253
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0446462 0.01175827 Inf 3.797 0.5037
## 0.0466777 0.01170978 Inf 3.986 0.3258
## 0.0464594 0.01163275 Inf 3.994 0.3194
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0039363 0.02672898 Inf 0.147 1.0000
## 0.0451897 0.01172898 Inf 3.853 0.4481
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0419059 0.01193066 Inf 3.512 0.7816
## -0.0370110 0.02319778 Inf -1.595 1.0000
## -0.8666674 0.01872489 Inf -46.284 <.0001
## -0.9277570 0.01541200 Inf -60.197 <.0001
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0450997 0.01173371 Inf 3.844 0.4572
## 0.0464231 0.01164414 Inf 3.987 0.3253
## 0.0461618 0.01161805 Inf 3.973 0.3368
## 0.0463558 0.01170633 Inf 3.960 0.3484
## 0.0466777 0.01165771 Inf 4.004 0.3110
## 0.0466777 0.01170978 Inf 3.986 0.3258
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## -0.0088595 0.03083311 Inf -0.287 1.0000
## 0.0466777 0.01165771 Inf 4.004 0.3110
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0461347 0.01168218 Inf 3.949 0.3579
## 0.0460519 0.01174709 Inf 3.920 0.3840
## 0.0446077 0.01170757 Inf 3.810 0.4905
## 0.0412333 0.01354583 Inf 3.044 0.9889
## 0.0410243 0.01360618 Inf 3.015 0.9916
## 0.0433310 0.01183600 Inf 3.661 0.6423
## 0.0303361 0.01281274 Inf 2.368 1.0000
## -0.9313695 0.01205541 Inf -77.257 <.0001
## -0.9312364 0.01238659 Inf -75.181 <.0001
## 0.0236152 0.01379764 Inf 1.712 1.0000
## 0.0274155 0.01386027 Inf 1.978 1.0000
## 0.0448115 0.01169852 Inf 3.831 0.4701
## 0.0453440 0.01249677 Inf 3.628 0.6746
## -0.2608587 0.06907157 Inf -3.777 0.5244
## 0.0304609 0.01299564 Inf 2.344 1.0000
## 0.0426048 0.01182875 Inf 3.602 0.7005
## 0.0464947 0.01160798 Inf 4.005 0.3098
## 0.0466777 0.01168929 Inf 3.993 0.3199
## -0.1282238 0.02856570 Inf -4.489 0.0636
## 0.0270592 0.01391254 Inf 1.945 1.0000
## 0.0453441 0.01167581 Inf 3.884 0.4184
## 0.0455729 0.01244726 Inf 3.661 0.6419
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0004165 0.01674386 Inf 0.025 1.0000
## -0.5331785 0.03458530 Inf -15.416 <.0001
## 0.0465226 0.01160715 Inf 4.008 0.3076
## 0.0460045 0.01172576 Inf 3.923 0.3812
## 0.0466777 0.01165771 Inf 4.004 0.3110
## 0.0466777 0.01170978 Inf 3.986 0.3258
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## 0.0140813 0.02319742 Inf 0.607 1.0000
## 0.0466777 0.01165771 Inf 4.004 0.3110
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0466777 0.01165771 Inf 4.004 0.3110
## 0.0466777 0.01170978 Inf 3.986 0.3258
## 0.0466777 0.01162505 Inf 4.015 0.3018
## 0.0466777 0.01222382 Inf 3.819 0.4820
## -0.0050364 0.02964827 Inf -0.170 1.0000
## 0.0453549 0.01172042 Inf 3.870 0.4317
## 0.0466777 0.01163449 Inf 4.012 0.3044
## 0.0466777 0.01160264 Inf 4.023 0.2956
## 0.0466777 0.01168929 Inf 3.993 0.3199
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0207647 0.01507533 Inf -1.377 1.0000
## -0.0002288 0.00266170 Inf -0.086 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## -0.0001551 0.00238059 Inf -0.065 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0026901 0.00320622 Inf -0.839 1.0000
## -0.0139976 0.00663084 Inf -2.111 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## -0.0777493 0.01705259 Inf -4.559 0.0482
## -0.0421966 0.01087734 Inf -3.879 0.4225
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01085995 Inf -3.480 0.8082
## -0.0095239 0.00541694 Inf -1.758 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0003268 0.00268246 Inf -0.122 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0207647 0.01514212 Inf -1.371 1.0000
## -0.0002288 0.00301710 Inf -0.076 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0001551 0.00277227 Inf -0.056 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0026901 0.00350686 Inf -0.767 1.0000
## -0.0139976 0.00678131 Inf -2.064 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## -0.0777493 0.01711167 Inf -4.544 0.0513
## -0.0421966 0.01096973 Inf -3.847 0.4542
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0377951 0.01095248 Inf -3.451 0.8309
## -0.0095239 0.00560014 Inf -1.701 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00303543 Inf -0.108 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0207647 0.01511775 Inf -1.374 1.0000
## -0.0002288 0.00289231 Inf -0.079 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## -0.0001551 0.00263591 Inf -0.059 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0026901 0.00340010 Inf -0.791 1.0000
## -0.0139976 0.00672672 Inf -2.081 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## -0.0777493 0.01709011 Inf -4.549 0.0502
## -0.0421966 0.01093606 Inf -3.858 0.4426
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0377951 0.01091876 Inf -3.461 0.8228
## -0.0095239 0.00553390 Inf -1.721 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0003268 0.00291142 Inf -0.112 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0235162 0.00808534 Inf -2.909 0.9974
## -0.0640912 0.01731083 Inf -3.702 0.6003
## -0.0024513 0.00314225 Inf -0.780 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0005542 0.00295619 Inf -0.187 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1440020 0.02392393 Inf -6.019 <.0001
## -0.0704192 0.01833041 Inf -3.842 0.4591
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0006408 0.00297339 Inf -0.216 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0786858 0.01721081 Inf -4.572 0.0459
## -0.0043800 0.00415606 Inf -1.054 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0033044 0.00353375 Inf -0.935 1.0000
## -0.0002546 0.00279571 Inf -0.091 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0020315 0.00325936 Inf -0.623 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## -0.0002183 0.00274733 Inf -0.079 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0427414 0.02425541 Inf -1.762 1.0000
## -0.0014880 0.00314559 Inf -0.473 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0047718 0.00386027 Inf -1.236 1.0000
## -0.0836887 0.02030400 Inf -4.122 0.2234
## -0.9133451 0.01481938 Inf -61.632 <.0001
## -0.9744347 0.01037748 Inf -93.899 <.0001
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0015780 0.00316426 Inf -0.499 1.0000
## -0.0002546 0.00279571 Inf -0.091 1.0000
## -0.0005159 0.00268880 Inf -0.192 1.0000
## -0.0003219 0.00304522 Inf -0.106 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0555372 0.02871765 Inf -1.934 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0005430 0.00295397 Inf -0.184 1.0000
## -0.0006258 0.00320207 Inf -0.195 1.0000
## -0.0020700 0.00307191 Inf -0.674 1.0000
## -0.0054444 0.00748968 Inf -0.727 1.0000
## -0.0056534 0.00759919 Inf -0.744 1.0000
## -0.0033467 0.00354305 Inf -0.945 1.0000
## -0.0163416 0.00611215 Inf -2.674 0.9999
## -0.9780472 0.00396260 Inf -246.819 <.0001
## -0.9779141 0.00487736 Inf -200.501 <.0001
## -0.0230625 0.00798881 Inf -2.887 0.9980
## -0.0192622 0.00808815 Inf -2.382 1.0000
## -0.0018662 0.00303472 Inf -0.615 1.0000
## -0.0013337 0.00533696 Inf -0.250 1.0000
## -0.3075364 0.06814522 Inf -4.513 0.0579
## -0.0162167 0.00648640 Inf -2.500 1.0000
## -0.0040729 0.00352598 Inf -1.155 1.0000
## -0.0001830 0.00263996 Inf -0.069 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1749015 0.02626340 Inf -6.660 <.0001
## -0.0196185 0.00817823 Inf -2.399 1.0000
## -0.0013336 0.00293912 Inf -0.454 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0462612 0.01242132 Inf -3.724 0.5779
## -0.5798562 0.03266578 Inf -17.751 <.0001
## -0.0001551 0.00263591 Inf -0.059 1.0000
## -0.0006732 0.00312352 Inf -0.216 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0325964 0.02029349 Inf -1.606 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0207647 0.01515794 Inf -1.370 1.0000
## -0.0002288 0.00309552 Inf -0.074 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0001551 0.00285741 Inf -0.054 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0026901 0.00357455 Inf -0.753 1.0000
## -0.0139976 0.00681656 Inf -2.053 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## -0.0777493 0.01712567 Inf -4.540 0.0521
## -0.0421966 0.01099155 Inf -3.839 0.4617
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0377951 0.01097434 Inf -3.444 0.8360
## -0.0095239 0.00564277 Inf -1.688 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0003268 0.00311338 Inf -0.105 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0235162 0.00816024 Inf -2.882 0.9981
## -0.0640912 0.01734594 Inf -3.695 0.6079
## -0.0024513 0.00333024 Inf -0.736 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0005542 0.00315529 Inf -0.176 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1440020 0.02394935 Inf -6.013 <.0001
## -0.0704192 0.01836357 Inf -3.835 0.4659
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0006408 0.00317141 Inf -0.202 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0786858 0.01724612 Inf -4.563 0.0476
## -0.0043800 0.00429996 Inf -1.019 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0033044 0.00370192 Inf -0.893 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0020315 0.00344096 Inf -0.590 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## -0.0002183 0.00296051 Inf -0.074 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0427414 0.02428048 Inf -1.760 1.0000
## -0.0014880 0.00333339 Inf -0.446 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0047718 0.00401478 Inf -1.189 1.0000
## -0.0836887 0.02033394 Inf -4.116 0.2274
## -0.9133451 0.01486037 Inf -61.462 <.0001
## -0.9744347 0.01043594 Inf -93.373 <.0001
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0015780 0.00335102 Inf -0.471 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## -0.0005159 0.00290627 Inf -0.178 1.0000
## -0.0003219 0.00323885 Inf -0.099 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0555372 0.02873883 Inf -1.932 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0005430 0.00315320 Inf -0.172 1.0000
## -0.0006258 0.00338675 Inf -0.185 1.0000
## -0.0020700 0.00326395 Inf -0.634 1.0000
## -0.0054444 0.00757048 Inf -0.719 1.0000
## -0.0056534 0.00767883 Inf -0.736 1.0000
## -0.0033467 0.00371079 Inf -0.902 1.0000
## -0.0163416 0.00621089 Inf -2.631 1.0000
## -0.9780472 0.00411327 Inf -237.778 <.0001
## -0.9779141 0.00500054 Inf -195.562 <.0001
## -0.0230625 0.00806460 Inf -2.860 0.9986
## -0.0192622 0.00816302 Inf -2.360 1.0000
## -0.0018662 0.00322898 Inf -0.578 1.0000
## -0.0013337 0.00544976 Inf -0.245 1.0000
## -0.3075364 0.06815414 Inf -4.512 0.0580
## -0.0162167 0.00657952 Inf -2.465 1.0000
## -0.0040729 0.00369450 Inf -1.102 1.0000
## -0.0001830 0.00286114 Inf -0.064 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1749015 0.02628655 Inf -6.654 <.0001
## -0.0196185 0.00825228 Inf -2.377 1.0000
## -0.0013336 0.00313930 Inf -0.425 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0462612 0.01247021 Inf -3.710 0.5928
## -0.5798562 0.03268440 Inf -17.741 <.0001
## -0.0001551 0.00285741 Inf -0.054 1.0000
## -0.0006732 0.00331258 Inf -0.203 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0207647 0.01509258 Inf -1.376 1.0000
## -0.0002288 0.00275771 Inf -0.083 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## -0.0001551 0.00248748 Inf -0.062 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0026901 0.00328636 Inf -0.819 1.0000
## -0.0139976 0.00666996 Inf -2.099 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## -0.0777493 0.01706784 Inf -4.555 0.0490
## -0.0421966 0.01090124 Inf -3.871 0.4306
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0377951 0.01088388 Inf -3.473 0.8142
## -0.0095239 0.00546476 Inf -1.743 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0003268 0.00277775 Inf -0.118 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0235162 0.00803817 Inf -2.926 0.9968
## -0.0640912 0.01728885 Inf -3.707 0.5955
## -0.0024513 0.00301882 Inf -0.812 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0005542 0.00282464 Inf -0.196 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1440020 0.02390803 Inf -6.023 <.0001
## -0.0704192 0.01830966 Inf -3.846 0.4548
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0006408 0.00284263 Inf -0.225 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0786858 0.01718870 Inf -4.578 0.0448
## -0.0043800 0.00406354 Inf -1.078 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0207647 0.01555847 Inf -1.335 1.0000
## -0.0002288 0.00467815 Inf -0.049 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0001551 0.00452412 Inf -0.034 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0026901 0.00500802 Inf -0.537 1.0000
## -0.0139976 0.00766606 Inf -1.826 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0205358 0.01512573 Inf 1.358 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0206096 0.01507894 Inf 1.367 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## 0.0180746 0.01522687 Inf 1.187 1.0000
## 0.0067670 0.01628178 Inf 0.416 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0196599 0.01573554 Inf 1.249 1.0000
## -0.0569847 0.02261045 Inf -2.520 1.0000
## -0.0214320 0.01840962 Inf -1.164 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## -0.0170305 0.01840063 Inf -0.926 1.0000
## 0.0112407 0.01583119 Inf 0.710 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0204378 0.01512923 Inf 1.351 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## -0.0027516 0.01688103 Inf -0.163 1.0000
## -0.0433266 0.02277830 Inf -1.902 1.0000
## 0.0183134 0.01517176 Inf 1.207 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0202105 0.01513751 Inf 1.335 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## -0.1232374 0.02813599 Inf -4.380 0.0953
## -0.0496546 0.02356214 Inf -2.107 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0201239 0.01514073 Inf 1.329 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## -0.0579212 0.02270180 Inf -2.551 1.0000
## 0.0163847 0.01541071 Inf 1.063 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0174603 0.01525630 Inf 1.144 1.0000
## 0.0205101 0.01510751 Inf 1.358 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## 0.0187331 0.01519713 Inf 1.233 1.0000
## 0.0207647 0.01515794 Inf 1.370 1.0000
## 0.0205463 0.01509870 Inf 1.361 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## -0.0219767 0.02841894 Inf -0.773 1.0000
## 0.0192767 0.01517404 Inf 1.270 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## 0.0159929 0.01533300 Inf 1.043 1.0000
## -0.0629240 0.02512788 Inf -2.504 1.0000
## -0.8925804 0.02102863 Inf -42.446 <.0001
## -0.9536700 0.01815208 Inf -52.538 <.0001
## 0.0207647 0.01555847 Inf 1.335 1.0000
## 0.0191867 0.01517777 Inf 1.264 1.0000
## 0.0205101 0.01510751 Inf 1.358 1.0000
## 0.0202488 0.01508764 Inf 1.342 1.0000
## 0.0204428 0.01515555 Inf 1.349 1.0000
## 0.0207647 0.01511775 Inf 1.374 1.0000
## 0.0207647 0.01515794 Inf 1.370 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## -0.0347725 0.03230981 Inf -1.076 1.0000
## 0.0207647 0.01511775 Inf 1.374 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## 0.0202217 0.01513710 Inf 1.336 1.0000
## 0.0201389 0.01518732 Inf 1.326 1.0000
## 0.0186946 0.01515797 Inf 1.233 1.0000
## 0.0153202 0.01662121 Inf 0.922 1.0000
## 0.0151112 0.01667056 Inf 0.906 1.0000
## 0.0174179 0.01525839 Inf 1.142 1.0000
## 0.0044231 0.01603542 Inf 0.276 1.0000
## -0.9572825 0.01540680 Inf -62.134 <.0001
## -0.9571494 0.01566721 Inf -61.093 <.0001
## -0.0022978 0.01683530 Inf -0.136 1.0000
## 0.0015024 0.01688535 Inf 0.089 1.0000
## 0.0188985 0.01515082 Inf 1.247 1.0000
## 0.0194309 0.01577491 Inf 1.232 1.0000
## -0.2867718 0.06974060 Inf -4.112 0.2299
## 0.0045479 0.01618188 Inf 0.281 1.0000
## 0.0166917 0.01525332 Inf 1.094 1.0000
## 0.0205817 0.01507959 Inf 1.365 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## -0.1541368 0.03015224 Inf -5.112 0.0041
## 0.0011461 0.01692841 Inf 0.068 1.0000
## 0.0194310 0.01513285 Inf 1.284 1.0000
## 0.0196599 0.01573554 Inf 1.249 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## -0.0254965 0.01932795 Inf -1.319 1.0000
## -0.5590916 0.03589371 Inf -15.576 <.0001
## 0.0206096 0.01507894 Inf 1.367 1.0000
## 0.0200914 0.01517087 Inf 1.324 1.0000
## 0.0207647 0.01511775 Inf 1.374 1.0000
## 0.0207647 0.01515794 Inf 1.370 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## -0.0118318 0.02512486 Inf -0.471 1.0000
## 0.0207647 0.01511775 Inf 1.374 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## 0.0207647 0.01511775 Inf 1.374 1.0000
## 0.0207647 0.01515794 Inf 1.370 1.0000
## 0.0207647 0.01509258 Inf 1.376 1.0000
## 0.0207647 0.01555847 Inf 1.335 1.0000
## -0.0309494 0.03118096 Inf -0.993 1.0000
## 0.0194419 0.01516729 Inf 1.282 1.0000
## 0.0207647 0.01509985 Inf 1.375 1.0000
## 0.0207647 0.01507533 Inf 1.377 1.0000
## 0.0207647 0.01514212 Inf 1.371 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0000738 0.00268357 Inf 0.027 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0024613 0.00343688 Inf -0.716 1.0000
## -0.0137688 0.00674486 Inf -2.041 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0008759 0.00524247 Inf -0.167 1.0000
## -0.0775205 0.01709694 Inf -4.534 0.0533
## -0.0419678 0.01094685 Inf -3.834 0.4669
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0375663 0.01092960 Inf -3.437 0.8410
## -0.0092951 0.00555616 Inf -1.673 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0000980 0.00295462 Inf -0.033 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0232874 0.00810020 Inf -2.875 0.9983
## -0.0638624 0.01731759 Inf -3.688 0.6152
## -0.0022224 0.00318205 Inf -0.698 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0003254 0.00299871 Inf -0.108 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.1437732 0.02392885 Inf -6.008 <.0001
## -0.0701904 0.01833679 Inf -3.828 0.4728
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0004120 0.00301566 Inf -0.137 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0784570 0.01721760 Inf -4.557 0.0487
## -0.0041511 0.00418606 Inf -0.992 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0030755 0.00356910 Inf -0.862 1.0000
## -0.0000257 0.00284068 Inf -0.009 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0018027 0.00329780 Inf -0.547 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0000105 0.00279308 Inf 0.004 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0425125 0.02426028 Inf -1.752 1.0000
## -0.0012592 0.00318546 Inf -0.395 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0045430 0.00389251 Inf -1.167 1.0000
## -0.0834598 0.02030975 Inf -4.109 0.2317
## -0.9131162 0.01482908 Inf -61.576 <.0001
## -0.9742059 0.01039073 Inf -93.757 <.0001
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0013492 0.00320389 Inf -0.421 1.0000
## -0.0000257 0.00284068 Inf -0.009 1.0000
## -0.0002870 0.00273549 Inf -0.105 1.0000
## -0.0000930 0.00308655 Inf -0.030 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0553083 0.02872173 Inf -1.926 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0003141 0.00299652 Inf -0.105 1.0000
## -0.0003969 0.00324136 Inf -0.122 1.0000
## -0.0018412 0.00311265 Inf -0.592 1.0000
## -0.0052156 0.00750632 Inf -0.695 1.0000
## -0.0054246 0.00761558 Inf -0.712 1.0000
## -0.0031179 0.00357829 Inf -0.871 1.0000
## -0.0161127 0.00613202 Inf -2.628 1.0000
## -0.9778184 0.00399691 Inf -244.643 <.0001
## -0.9776852 0.00490528 Inf -199.313 <.0001
## -0.0228336 0.00800385 Inf -2.853 0.9987
## -0.0190334 0.00810310 Inf -2.349 1.0000
## -0.0016373 0.00307598 Inf -0.532 1.0000
## -0.0011049 0.00536057 Inf -0.206 1.0000
## -0.3073076 0.06814702 Inf -4.509 0.0587
## -0.0159879 0.00650513 Inf -2.458 1.0000
## -0.0038441 0.00356132 Inf -1.079 1.0000
## 0.0000458 0.00268754 Inf 0.017 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.1746727 0.02626791 Inf -6.650 <.0001
## -0.0193897 0.00819300 Inf -2.367 1.0000
## -0.0011048 0.00298178 Inf -0.371 1.0000
## -0.0008759 0.00524247 Inf -0.167 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0460323 0.01243080 Inf -3.703 0.5996
## -0.5796274 0.03266988 Inf -17.742 <.0001
## 0.0000738 0.00268357 Inf 0.027 1.0000
## -0.0004444 0.00316378 Inf -0.140 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0323676 0.02029935 Inf -1.595 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## 0.0002288 0.00289231 Inf 0.079 1.0000
## 0.0002288 0.00309552 Inf 0.074 1.0000
## 0.0002288 0.00275771 Inf 0.083 1.0000
## 0.0002288 0.00467815 Inf 0.049 1.0000
## -0.0514852 0.02744532 Inf -1.876 1.0000
## -0.0010940 0.00315182 Inf -0.347 1.0000
## 0.0002288 0.00279726 Inf 0.082 1.0000
## 0.0002288 0.00266170 Inf 0.086 1.0000
## 0.0002288 0.00301710 Inf 0.076 1.0000
## -0.0001551 0.00253125 Inf -0.061 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0026901 0.00331962 Inf -0.810 1.0000
## -0.0139976 0.00668640 Inf -2.093 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## -0.0777493 0.01707428 Inf -4.554 0.0493
## -0.0421966 0.01091131 Inf -3.867 0.4341
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0377951 0.01089397 Inf -3.469 0.8167
## -0.0095239 0.00548483 Inf -1.736 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0003268 0.00281702 Inf -0.116 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0235162 0.00805183 Inf -2.921 0.9970
## -0.0640912 0.01729520 Inf -3.706 0.5969
## -0.0024513 0.00305499 Inf -0.802 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0005542 0.00286326 Inf -0.194 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1440020 0.02391263 Inf -6.022 <.0001
## -0.0704192 0.01831566 Inf -3.845 0.4560
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0006408 0.00288102 Inf -0.222 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0786858 0.01719509 Inf -4.576 0.0451
## -0.0043800 0.00409049 Inf -1.071 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0033044 0.00345639 Inf -0.956 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0020315 0.00317532 Inf -0.640 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0002183 0.00264708 Inf -0.082 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0427414 0.02424426 Inf -1.763 1.0000
## -0.0014880 0.00305842 Inf -0.487 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0025350 0.00322419 Inf -0.786 1.0000
## -0.0138426 0.00663918 Inf -2.085 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0009497 0.00510552 Inf -0.186 1.0000
## -0.0775943 0.01705563 Inf -4.549 0.0501
## -0.0420416 0.01088217 Inf -3.863 0.4379
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0376401 0.01086481 Inf -3.464 0.8206
## -0.0093689 0.00542731 Inf -1.726 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0001718 0.00270416 Inf -0.064 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0233612 0.00801249 Inf -2.916 0.9972
## -0.0639362 0.01727680 Inf -3.701 0.6020
## -0.0022962 0.00295104 Inf -0.778 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0003991 0.00275227 Inf -0.145 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.1438470 0.02389934 Inf -6.019 <.0001
## -0.0702642 0.01829827 Inf -3.840 0.4608
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0004857 0.00277073 Inf -0.175 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0785308 0.01717657 Inf -4.572 0.0458
## -0.0042249 0.00401333 Inf -1.053 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0031493 0.00336480 Inf -0.936 1.0000
## -0.0000995 0.00257917 Inf -0.039 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0018765 0.00307548 Inf -0.610 1.0000
## 0.0001551 0.00285741 Inf 0.054 1.0000
## -0.0000633 0.00252665 Inf -0.025 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0425863 0.02423116 Inf -1.758 1.0000
## -0.0013329 0.00295468 Inf -0.451 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0046167 0.00370613 Inf -1.246 1.0000
## -0.0835336 0.02027499 Inf -4.120 0.2245
## -0.9131900 0.01478084 Inf -61.782 <.0001
## -0.9742796 0.01032196 Inf -94.389 <.0001
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0014229 0.00297455 Inf -0.478 1.0000
## -0.0000995 0.00257917 Inf -0.039 1.0000
## -0.0003608 0.00246285 Inf -0.146 1.0000
## -0.0001668 0.00284771 Inf -0.059 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00285741 Inf 0.054 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0553821 0.02869715 Inf -1.930 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0003879 0.00274988 Inf -0.141 1.0000
## -0.0004707 0.00301482 Inf -0.156 1.0000
## -0.0019150 0.00287606 Inf -0.666 1.0000
## -0.0052894 0.00741139 Inf -0.714 1.0000
## -0.0054984 0.00752203 Inf -0.731 1.0000
## -0.0031917 0.00337456 Inf -0.946 1.0000
## -0.0161865 0.00601562 Inf -2.691 0.9999
## -0.9778921 0.00381466 Inf -256.351 <.0001
## -0.9777590 0.00475795 Inf -205.500 <.0001
## -0.0229074 0.00791508 Inf -2.894 0.9978
## -0.0191072 0.00801539 Inf -2.384 1.0000
## -0.0017111 0.00283633 Inf -0.603 1.0000
## -0.0011787 0.00522672 Inf -0.226 1.0000
## -0.3073814 0.06813664 Inf -4.511 0.0583
## -0.0160617 0.00639551 Inf -2.511 1.0000
## -0.0039179 0.00335658 Inf -1.167 1.0000
## -0.0000279 0.00240947 Inf -0.012 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.1747464 0.02624102 Inf -6.659 <.0001
## -0.0194635 0.00810627 Inf -2.401 1.0000
## -0.0011786 0.00273385 Inf -0.431 1.0000
## -0.0009497 0.00510552 Inf -0.186 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0461061 0.01237389 Inf -3.726 0.5761
## -0.5797012 0.03264811 Inf -17.756 <.0001
## 0.0000000 0.00240504 Inf 0.000 1.0000
## -0.0005182 0.00293126 Inf -0.177 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00285741 Inf 0.054 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0324414 0.02026453 Inf -1.601 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00285741 Inf 0.054 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0515590 0.02741959 Inf -1.880 1.0000
## -0.0011677 0.00291837 Inf -0.400 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## -0.0026901 0.00350686 Inf -0.767 1.0000
## -0.0139976 0.00678131 Inf -2.064 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## -0.0777493 0.01711167 Inf -4.544 0.0513
## -0.0421966 0.01096973 Inf -3.847 0.4542
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0377951 0.01095248 Inf -3.451 0.8309
## -0.0095239 0.00560014 Inf -1.701 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00303543 Inf -0.108 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0113075 0.00697090 Inf -1.622 1.0000
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0015853 0.00553798 Inf 0.286 1.0000
## -0.0750592 0.01718413 Inf -4.368 0.0995
## -0.0395065 0.01108367 Inf -3.564 0.7357
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## -0.0351051 0.01106699 Inf -3.172 0.9672
## -0.0068338 0.00583063 Inf -1.172 1.0000
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0023633 0.00345285 Inf 0.684 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## -0.0208262 0.00828691 Inf -2.513 1.0000
## -0.0614011 0.01740380 Inf -3.528 0.7682
## 0.0002388 0.00364695 Inf 0.065 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0021359 0.00349037 Inf 0.612 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## -0.1413119 0.02399163 Inf -5.890 0.0001
## -0.0677291 0.01841816 Inf -3.677 0.6258
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0020493 0.00350484 Inf 0.585 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## -0.0759957 0.01730418 Inf -4.392 0.0913
## -0.0016899 0.00454787 Inf -0.372 1.0000
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## -0.0006143 0.00398831 Inf -0.154 1.0000
## 0.0024355 0.00335596 Inf 0.726 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## 0.0006586 0.00374882 Inf 0.176 1.0000
## 0.0026901 0.00357455 Inf 0.753 1.0000
## 0.0024718 0.00331581 Inf 0.745 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## -0.0400513 0.02432231 Inf -1.647 1.0000
## 0.0012021 0.00365100 Inf 0.329 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## -0.0020817 0.00427887 Inf -0.487 1.0000
## -0.0809986 0.02038320 Inf -3.974 0.3364
## -0.9106550 0.01494809 Inf -60.921 <.0001
## -0.9717446 0.01055388 Inf -92.075 <.0001
## 0.0026901 0.00500802 Inf 0.537 1.0000
## 0.0011121 0.00366699 Inf 0.303 1.0000
## 0.0024355 0.00335596 Inf 0.726 1.0000
## 0.0021742 0.00326706 Inf 0.666 1.0000
## 0.0023682 0.00356640 Inf 0.664 1.0000
## 0.0026901 0.00340010 Inf 0.791 1.0000
## 0.0026901 0.00357455 Inf 0.753 1.0000
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## -0.0528471 0.02877389 Inf -1.837 1.0000
## 0.0026901 0.00340010 Inf 0.791 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## 0.0021471 0.00348850 Inf 0.615 1.0000
## 0.0020643 0.00370084 Inf 0.558 1.0000
## 0.0006201 0.00358699 Inf 0.173 1.0000
## -0.0027543 0.00771344 Inf -0.357 1.0000
## -0.0029633 0.00781971 Inf -0.379 1.0000
## -0.0006566 0.00399650 Inf -0.164 1.0000
## -0.0136515 0.00637891 Inf -2.140 1.0000
## -0.9753571 0.00440113 Inf -221.615 <.0001
## -0.9752240 0.00523997 Inf -186.113 <.0001
## -0.0203724 0.00819286 Inf -2.487 1.0000
## -0.0165721 0.00829072 Inf -1.999 1.0000
## 0.0008239 0.00355545 Inf 0.232 1.0000
## 0.0013563 0.00564974 Inf 0.240 1.0000
## -0.3048463 0.06816992 Inf -4.472 0.0678
## -0.0135267 0.00673840 Inf -2.007 1.0000
## -0.0013828 0.00398062 Inf -0.347 1.0000
## 0.0025071 0.00322746 Inf 0.777 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## -0.1722114 0.02632546 Inf -6.542 <.0001
## -0.0169285 0.00837852 Inf -2.020 1.0000
## 0.0013565 0.00347490 Inf 0.390 1.0000
## 0.0015853 0.00553798 Inf 0.286 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## -0.0435711 0.01255123 Inf -3.471 0.8151
## -0.5771661 0.03272089 Inf -17.639 <.0001
## 0.0025350 0.00322419 Inf 0.786 1.0000
## 0.0020169 0.00363303 Inf 0.555 1.0000
## 0.0026901 0.00340010 Inf 0.791 1.0000
## 0.0026901 0.00357455 Inf 0.753 1.0000
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## -0.0299063 0.02037392 Inf -1.468 1.0000
## 0.0026901 0.00340010 Inf 0.791 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## 0.0026901 0.00340010 Inf 0.791 1.0000
## 0.0026901 0.00357455 Inf 0.753 1.0000
## 0.0026901 0.00328636 Inf 0.819 1.0000
## 0.0026901 0.00500802 Inf 0.537 1.0000
## -0.0490240 0.02749996 Inf -1.783 1.0000
## 0.0013673 0.00362187 Inf 0.378 1.0000
## 0.0026901 0.00331962 Inf 0.810 1.0000
## 0.0026901 0.00320622 Inf 0.839 1.0000
## 0.0026901 0.00350686 Inf 0.767 1.0000
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0128929 0.00802021 Inf 1.608 1.0000
## -0.0637517 0.01811750 Inf -3.519 0.7762
## -0.0281990 0.01248550 Inf -2.259 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## -0.0237975 0.01247179 Inf -1.908 1.0000
## 0.0044737 0.00821181 Inf 0.545 1.0000
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0136708 0.00675279 Inf 2.024 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## -0.0095186 0.01009331 Inf -0.943 1.0000
## -0.0500936 0.01832638 Inf -2.733 0.9998
## 0.0115464 0.00684948 Inf 1.686 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0134434 0.00677154 Inf 1.985 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## -0.1300044 0.02467016 Inf -5.270 0.0018
## -0.0564216 0.01929206 Inf -2.925 0.9968
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0133568 0.00677881 Inf 1.970 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## -0.0646882 0.01823139 Inf -3.548 0.7504
## 0.0096177 0.00736513 Inf 1.306 1.0000
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0106933 0.00703546 Inf 1.520 1.0000
## 0.0137431 0.00670393 Inf 2.050 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## 0.0119661 0.00690513 Inf 1.733 1.0000
## 0.0139976 0.00681656 Inf 2.053 1.0000
## 0.0137793 0.00668401 Inf 2.062 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## -0.0287437 0.02499223 Inf -1.150 1.0000
## 0.0125096 0.00685367 Inf 1.825 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## 0.0092258 0.00720142 Inf 1.281 1.0000
## -0.0696910 0.02117599 Inf -3.291 0.9264
## -0.8993474 0.01607429 Inf -55.949 <.0001
## -0.9604371 0.01207757 Inf -79.522 <.0001
## 0.0139976 0.00766606 Inf 1.826 1.0000
## 0.0124196 0.00686201 Inf 1.810 1.0000
## 0.0137431 0.00670393 Inf 2.050 1.0000
## 0.0134818 0.00665927 Inf 2.025 1.0000
## 0.0136758 0.00681156 Inf 2.008 1.0000
## 0.0139976 0.00672672 Inf 2.081 1.0000
## 0.0139976 0.00681656 Inf 2.053 1.0000
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## -0.0415395 0.02934145 Inf -1.416 1.0000
## 0.0139976 0.00672672 Inf 2.081 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## 0.0134547 0.00677060 Inf 1.987 1.0000
## 0.0133719 0.00688223 Inf 1.943 1.0000
## 0.0119276 0.00681854 Inf 1.749 1.0000
## 0.0085532 0.00964528 Inf 0.887 1.0000
## 0.0083442 0.00973020 Inf 0.858 1.0000
## 0.0106509 0.00704003 Inf 1.513 1.0000
## -0.0023439 0.00860215 Inf -0.272 1.0000
## -0.9640496 0.00733300 Inf -131.467 <.0001
## -0.9639164 0.00786533 Inf -122.553 <.0001
## -0.0090648 0.01001652 Inf -0.905 1.0000
## -0.0052646 0.01009932 Inf -0.521 1.0000
## 0.0121315 0.00680244 Inf 1.783 1.0000
## 0.0126639 0.00809736 Inf 1.564 1.0000
## -0.2935388 0.06841464 Inf -4.291 0.1304
## -0.0022191 0.00887213 Inf -0.250 1.0000
## 0.0099247 0.00702962 Inf 1.412 1.0000
## 0.0138146 0.00664071 Inf 2.080 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## -0.1609039 0.02694649 Inf -5.971 <.0001
## -0.0056209 0.01017127 Inf -0.553 1.0000
## 0.0126640 0.00676184 Inf 1.873 1.0000
## 0.0128929 0.00802021 Inf 1.608 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## -0.0322635 0.01380407 Inf -2.337 1.0000
## -0.5658586 0.03323928 Inf -17.024 <.0001
## 0.0138426 0.00663918 Inf 2.085 1.0000
## 0.0133244 0.00684590 Inf 1.946 1.0000
## 0.0139976 0.00672672 Inf 2.081 1.0000
## 0.0139976 0.00681656 Inf 2.053 1.0000
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## -0.0185988 0.02117083 Inf -0.879 1.0000
## 0.0139976 0.00672672 Inf 2.081 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## 0.0139976 0.00672672 Inf 2.081 1.0000
## 0.0139976 0.00681656 Inf 2.053 1.0000
## 0.0139976 0.00666996 Inf 2.099 1.0000
## 0.0139976 0.00766606 Inf 1.826 1.0000
## -0.0377164 0.02809349 Inf -1.343 1.0000
## 0.0126748 0.00683856 Inf 1.853 1.0000
## 0.0139976 0.00668640 Inf 2.093 1.0000
## 0.0139976 0.00663084 Inf 2.111 1.0000
## 0.0139976 0.00678131 Inf 2.064 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## -0.0777493 0.01706784 Inf -4.555 0.0490
## -0.0421966 0.01090124 Inf -3.871 0.4306
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0377951 0.01088388 Inf -3.473 0.8142
## -0.0095239 0.00546476 Inf -1.743 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0003268 0.00277775 Inf -0.118 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0235162 0.00803817 Inf -2.926 0.9968
## -0.0640912 0.01728885 Inf -3.707 0.5955
## -0.0024513 0.00301882 Inf -0.812 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0005542 0.00282464 Inf -0.196 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1440020 0.02390803 Inf -6.023 <.0001
## -0.0704192 0.01830966 Inf -3.846 0.4548
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0006408 0.00284263 Inf -0.225 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0786858 0.01718870 Inf -4.578 0.0448
## -0.0043800 0.00406354 Inf -1.078 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## -0.0777493 0.01748117 Inf -4.448 0.0743
## -0.0421966 0.01153764 Inf -3.657 0.6459
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0377951 0.01152124 Inf -3.280 0.9310
## -0.0095239 0.00664408 Inf -1.433 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0766445 0.01763789 Inf -4.345 0.1078
## -0.0410918 0.01177423 Inf -3.490 0.8003
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.0366904 0.01175832 Inf -3.120 0.9782
## -0.0084191 0.00705058 Inf -1.194 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0007779 0.00525300 Inf 0.148 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.0224115 0.00918852 Inf -2.439 1.0000
## -0.0629864 0.01785190 Inf -3.528 0.7680
## -0.0013465 0.00538361 Inf -0.250 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0005506 0.00527786 Inf 0.104 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.1428972 0.02431845 Inf -5.876 0.0001
## -0.0693145 0.01884219 Inf -3.679 0.6244
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0004640 0.00528748 Inf 0.088 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.0775810 0.01775487 Inf -4.370 0.0989
## -0.0032752 0.00603121 Inf -0.543 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0021996 0.00562084 Inf -0.391 1.0000
## 0.0008502 0.00518979 Inf 0.164 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.0009267 0.00545293 Inf -0.170 1.0000
## 0.0011048 0.00533362 Inf 0.207 1.0000
## 0.0008865 0.00516390 Inf 0.172 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0416366 0.02464467 Inf -1.689 1.0000
## -0.0003832 0.00538589 Inf -0.071 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.0036670 0.00583120 Inf -0.629 1.0000
## -0.0825839 0.02076718 Inf -3.977 0.3339
## -0.9122403 0.01545621 Inf -59.021 <.0001
## -0.9733299 0.01126560 Inf -86.398 <.0001
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0004732 0.00539679 Inf -0.088 1.0000
## 0.0008502 0.00518979 Inf 0.164 1.0000
## 0.0005889 0.00513289 Inf 0.115 1.0000
## 0.0007829 0.00532832 Inf 0.147 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00533362 Inf 0.207 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0544324 0.02904705 Inf -1.874 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## 0.0005618 0.00527662 Inf 0.106 1.0000
## 0.0004790 0.00541938 Inf 0.088 1.0000
## -0.0009653 0.00534299 Inf -0.181 1.0000
## -0.0043397 0.00867147 Inf -0.500 1.0000
## -0.0045486 0.00876619 Inf -0.519 1.0000
## -0.0022419 0.00562667 Inf -0.398 1.0000
## -0.0152368 0.00751186 Inf -2.028 1.0000
## -0.9769424 0.00590877 Inf -165.338 <.0001
## -0.9768093 0.00655747 Inf -148.961 <.0001
## -0.0219577 0.00910373 Inf -2.412 1.0000
## -0.0181574 0.00919140 Inf -1.975 1.0000
## -0.0007614 0.00532177 Inf -0.143 1.0000
## -0.0002290 0.00689904 Inf -0.033 1.0000
## -0.3064316 0.06828510 Inf -4.488 0.0639
## -0.0151120 0.00781941 Inf -1.933 1.0000
## -0.0029682 0.00561571 Inf -0.529 1.0000
## 0.0009218 0.00510760 Inf 0.180 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.1737967 0.02662343 Inf -6.528 <.0001
## -0.0185138 0.00927072 Inf -1.997 1.0000
## -0.0002288 0.00526803 Inf -0.043 1.0000
## 0.0000000 0.00680774 Inf 0.000 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0451564 0.01316517 Inf -3.430 0.8461
## -0.5787514 0.03295812 Inf -17.560 <.0001
## 0.0009497 0.00510552 Inf 0.186 1.0000
## 0.0004316 0.00537333 Inf 0.080 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00533362 Inf 0.207 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0314916 0.02075740 Inf -1.517 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00533362 Inf 0.207 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0506093 0.02778561 Inf -1.821 1.0000
## -0.0002180 0.00536611 Inf -0.041 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## 0.0355527 0.02004296 Inf 1.774 1.0000
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0399542 0.02003547 Inf 1.994 1.0000
## 0.0682254 0.01771649 Inf 3.851 0.4499
## 0.0777493 0.01706784 Inf 4.555 0.0490
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0774225 0.01709993 Inf 4.528 0.0546
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0542331 0.01865356 Inf 2.907 0.9974
## 0.0136581 0.02411582 Inf 0.566 1.0000
## 0.0752981 0.01713554 Inf 4.394 0.0905
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0771951 0.01710704 Inf 4.512 0.0580
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## -0.0662527 0.02923040 Inf -2.267 1.0000
## 0.0073301 0.02485732 Inf 0.295 1.0000
## 0.0777493 0.01706784 Inf 4.555 0.0490
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0771085 0.01710980 Inf 4.507 0.0593
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## -0.0009365 0.02404324 Inf -0.039 1.0000
## 0.0733694 0.01734576 Inf 4.230 0.1596
## 0.0777493 0.01706784 Inf 4.555 0.0490
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0744450 0.01720967 Inf 4.326 0.1155
## 0.0774947 0.01708080 Inf 4.537 0.0527
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0757178 0.01715840 Inf 4.413 0.0845
## 0.0777493 0.01712567 Inf 4.540 0.0521
## 0.0775310 0.01707304 Inf 4.541 0.0518
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0350080 0.02950321 Inf 1.187 1.0000
## 0.0762613 0.01713846 Inf 4.450 0.0737
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0729775 0.01727643 Inf 4.224 0.1625
## -0.0059394 0.02634606 Inf -0.225 1.0000
## -0.8355957 0.02251921 Inf -37.106 <.0001
## -0.8966854 0.01984706 Inf -45.180 <.0001
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0761713 0.01714168 Inf 4.444 0.0754
## 0.0774947 0.01708080 Inf 4.537 0.0527
## 0.0772335 0.01706296 Inf 4.526 0.0549
## 0.0774275 0.01712323 Inf 4.522 0.0559
## 0.0777493 0.01709011 Inf 4.549 0.0502
## 0.0777493 0.01712567 Inf 4.540 0.0521
## 0.0777493 0.01706784 Inf 4.555 0.0490
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0222122 0.03326662 Inf 0.668 1.0000
## 0.0777493 0.01709011 Inf 4.549 0.0502
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0772064 0.01710668 Inf 4.513 0.0578
## 0.0771236 0.01715106 Inf 4.497 0.0616
## 0.0756793 0.01712369 Inf 4.420 0.0825
## 0.0723049 0.01842876 Inf 3.923 0.3811
## 0.0720959 0.01847313 Inf 3.903 0.4003
## 0.0744026 0.01721148 Inf 4.323 0.1167
## 0.0614077 0.01789516 Inf 3.432 0.8450
## -0.9002979 0.01736917 Inf -51.833 <.0001
## -0.9001648 0.01760066 Inf -51.144 <.0001
## 0.0546869 0.01861236 Inf 2.938 0.9963
## 0.0584871 0.01865920 Inf 3.134 0.9755
## 0.0758832 0.01711755 Inf 4.433 0.0785
## 0.0764156 0.01767281 Inf 4.324 0.1163
## -0.2297871 0.07019248 Inf -3.274 0.9338
## 0.0615326 0.01802658 Inf 3.413 0.8576
## 0.0736764 0.01720635 Inf 4.282 0.1342
## 0.0775663 0.01705618 Inf 4.548 0.0505
## 0.0777493 0.01711167 Inf 4.544 0.0513
## -0.0971522 0.03117711 Inf -3.116 0.9790
## 0.0581308 0.01869802 Inf 3.109 0.9802
## 0.0764157 0.01710215 Inf 4.468 0.0687
## 0.0766445 0.01763789 Inf 4.345 0.1078
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0314882 0.02088906 Inf 1.507 1.0000
## -0.5021069 0.03677559 Inf -13.653 <.0001
## 0.0775943 0.01705563 Inf 4.549 0.0501
## 0.0770761 0.01713645 Inf 4.498 0.0614
## 0.0777493 0.01709011 Inf 4.549 0.0502
## 0.0777493 0.01712567 Inf 4.540 0.0521
## 0.0777493 0.01706784 Inf 4.555 0.0490
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0451529 0.02634653 Inf 1.714 1.0000
## 0.0777493 0.01709011 Inf 4.549 0.0502
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0777493 0.01709011 Inf 4.549 0.0502
## 0.0777493 0.01712567 Inf 4.540 0.0521
## 0.0777493 0.01706784 Inf 4.555 0.0490
## 0.0777493 0.01748117 Inf 4.448 0.0743
## 0.0260352 0.03217158 Inf 0.809 1.0000
## 0.0764265 0.01713264 Inf 4.461 0.0707
## 0.0777493 0.01707428 Inf 4.554 0.0493
## 0.0777493 0.01705259 Inf 4.559 0.0482
## 0.0777493 0.01711167 Inf 4.544 0.0513
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0044015 0.01513807 Inf 0.291 1.0000
## 0.0326727 0.01189482 Inf 2.747 0.9997
## 0.0421966 0.01090124 Inf 3.871 0.4306
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0418698 0.01095157 Inf 3.823 0.4774
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0186804 0.01325329 Inf 1.409 1.0000
## -0.0218946 0.02023239 Inf -1.082 1.0000
## 0.0397454 0.01100808 Inf 3.611 0.6920
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0416424 0.01096277 Inf 3.799 0.5022
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## -0.1018054 0.02611847 Inf -3.898 0.4049
## -0.0282226 0.02111081 Inf -1.337 1.0000
## 0.0421966 0.01090124 Inf 3.871 0.4306
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0415558 0.01096712 Inf 3.789 0.5117
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## -0.0364892 0.02014595 Inf -1.811 1.0000
## 0.0378167 0.01133335 Inf 3.337 0.9040
## 0.0421966 0.01090124 Inf 3.871 0.4306
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0388923 0.01112348 Inf 3.496 0.7950
## 0.0419420 0.01092163 Inf 3.840 0.4605
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0401651 0.01104344 Inf 3.637 0.6661
## 0.0421966 0.01099155 Inf 3.839 0.4617
## 0.0419783 0.01090948 Inf 3.848 0.4530
## 0.0421966 0.01153764 Inf 3.657 0.6459
## -0.0005448 0.02642330 Inf -0.021 1.0000
## 0.0407086 0.01101219 Inf 3.697 0.6061
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0374248 0.01122711 Inf 3.333 0.9058
## -0.0414921 0.02284507 Inf -1.816 1.0000
## -0.8711484 0.01828133 Inf -47.652 <.0001
## -0.9322381 0.01487129 Inf -62.687 <.0001
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0406186 0.01101724 Inf 3.687 0.6161
## 0.0419420 0.01092163 Inf 3.840 0.4605
## 0.0416808 0.01089384 Inf 3.826 0.4745
## 0.0418748 0.01098791 Inf 3.811 0.4896
## 0.0421966 0.01093606 Inf 3.858 0.4426
## 0.0421966 0.01099155 Inf 3.839 0.4617
## 0.0421966 0.01090124 Inf 3.871 0.4306
## 0.0421966 0.01153764 Inf 3.657 0.6459
## -0.0133406 0.03056858 Inf -0.436 1.0000
## 0.0421966 0.01093606 Inf 3.858 0.4426
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0416536 0.01096221 Inf 3.800 0.5010
## 0.0415708 0.01103137 Inf 3.768 0.5328
## 0.0401266 0.01098944 Inf 3.651 0.6519
## 0.0367522 0.01293052 Inf 2.842 0.9989
## 0.0365432 0.01299374 Inf 2.812 0.9992
## 0.0388499 0.01112631 Inf 3.492 0.7989
## 0.0258550 0.01216121 Inf 2.126 1.0000
## -0.9358506 0.01135630 Inf -82.408 <.0001
## -0.9357175 0.01170726 Inf -79.926 <.0001
## 0.0191341 0.01319516 Inf 1.450 1.0000
## 0.0229344 0.01326046 Inf 1.730 1.0000
## 0.0403305 0.01097978 Inf 3.673 0.6300
## 0.0408629 0.01182658 Inf 3.455 0.8276
## -0.2653398 0.06895361 Inf -3.848 0.4528
## 0.0259799 0.01235375 Inf 2.103 1.0000
## 0.0381237 0.01111867 Inf 3.429 0.8469
## 0.0420136 0.01088306 Inf 3.860 0.4407
## 0.0421966 0.01096973 Inf 3.847 0.4542
## -0.1327049 0.02827981 Inf -4.693 0.0279
## 0.0225781 0.01331510 Inf 1.696 1.0000
## 0.0408630 0.01095552 Inf 3.730 0.5722
## 0.0410918 0.01177423 Inf 3.490 0.8003
## 0.0421966 0.01153764 Inf 3.657 0.6459
## -0.0040646 0.01625148 Inf -0.250 1.0000
## -0.5376596 0.03434813 Inf -15.653 <.0001
## 0.0420416 0.01088217 Inf 3.863 0.4379
## 0.0415234 0.01100866 Inf 3.772 0.5292
## 0.0421966 0.01093606 Inf 3.858 0.4426
## 0.0421966 0.01099155 Inf 3.839 0.4617
## 0.0421966 0.01090124 Inf 3.871 0.4306
## 0.0421966 0.01153764 Inf 3.657 0.6459
## 0.0096002 0.02284440 Inf 0.420 1.0000
## 0.0421966 0.01093606 Inf 3.858 0.4426
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0421966 0.01093606 Inf 3.858 0.4426
## 0.0421966 0.01099155 Inf 3.839 0.4617
## 0.0421966 0.01090124 Inf 3.871 0.4306
## 0.0421966 0.01153764 Inf 3.657 0.6459
## -0.0095175 0.02937305 Inf -0.324 1.0000
## 0.0408738 0.01100305 Inf 3.715 0.5876
## 0.0421966 0.01091131 Inf 3.867 0.4341
## 0.0421966 0.01087734 Inf 3.879 0.4225
## 0.0421966 0.01096973 Inf 3.847 0.4542
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01085995 Inf -3.480 0.8082
## -0.0095239 0.00541694 Inf -1.758 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0003268 0.00268246 Inf -0.122 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0377951 0.01095248 Inf -3.451 0.8309
## -0.0095239 0.00560014 Inf -1.701 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00303543 Inf -0.108 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0282712 0.01188003 Inf 2.380 1.0000
## 0.0377951 0.01088388 Inf 3.473 0.8142
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0374683 0.01093435 Inf 3.427 0.8484
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## 0.0142789 0.01324095 Inf 1.078 1.0000
## -0.0262961 0.02022493 Inf -1.300 1.0000
## 0.0353439 0.01099124 Inf 3.216 0.9549
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0372410 0.01094559 Inf 3.402 0.8650
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## -0.1062069 0.02611258 Inf -4.067 0.2616
## -0.0326241 0.02110369 Inf -1.546 1.0000
## 0.0377951 0.01088388 Inf 3.473 0.8142
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0371543 0.01094997 Inf 3.393 0.8710
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## -0.0408907 0.02013850 Inf -2.030 1.0000
## 0.0334152 0.01131725 Inf 2.953 0.9957
## 0.0377951 0.01088388 Inf 3.473 0.8142
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0344908 0.01110694 Inf 3.105 0.9808
## 0.0375406 0.01090435 Inf 3.443 0.8369
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## 0.0357636 0.01102660 Inf 3.243 0.9456
## 0.0377951 0.01097434 Inf 3.444 0.8360
## 0.0375768 0.01089217 Inf 3.450 0.8316
## 0.0377951 0.01152124 Inf 3.280 0.9310
## -0.0049462 0.02641745 Inf -0.187 1.0000
## 0.0363071 0.01099522 Inf 3.302 0.9213
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## 0.0330233 0.01121090 Inf 2.946 0.9960
## -0.0458935 0.02283850 Inf -2.009 1.0000
## -0.8755499 0.01826739 Inf -47.930 <.0001
## -0.9366396 0.01485576 Inf -63.049 <.0001
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0362172 0.01100030 Inf 3.292 0.9258
## 0.0375406 0.01090435 Inf 3.443 0.8369
## 0.0372793 0.01087655 Inf 3.427 0.8478
## 0.0374733 0.01097075 Inf 3.416 0.8560
## 0.0377951 0.01091876 Inf 3.461 0.8228
## 0.0377951 0.01097434 Inf 3.444 0.8360
## 0.0377951 0.01088388 Inf 3.473 0.8142
## 0.0377951 0.01152124 Inf 3.280 0.9310
## -0.0177420 0.03056360 Inf -0.580 1.0000
## 0.0377951 0.01091876 Inf 3.461 0.8228
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## 0.0372522 0.01094503 Inf 3.404 0.8642
## 0.0371694 0.01101431 Inf 3.375 0.8825
## 0.0357251 0.01097253 Inf 3.256 0.9409
## 0.0323507 0.01291652 Inf 2.505 1.0000
## 0.0321417 0.01297983 Inf 2.476 1.0000
## 0.0344484 0.01110977 Inf 3.101 0.9815
## 0.0214536 0.01214731 Inf 1.766 1.0000
## -0.9402521 0.01133633 Inf -82.942 <.0001
## -0.9401189 0.01168787 Inf -80.435 <.0001
## 0.0147327 0.01318274 Inf 1.118 1.0000
## 0.0185329 0.01324790 Inf 1.399 1.0000
## 0.0359290 0.01096282 Inf 3.277 0.9323
## 0.0364614 0.01181077 Inf 3.087 0.9836
## -0.2697413 0.06895107 Inf -3.912 0.3916
## 0.0215784 0.01234006 Inf 1.749 1.0000
## 0.0337222 0.01110222 Inf 3.037 0.9896
## 0.0376121 0.01086570 Inf 3.462 0.8228
## 0.0377951 0.01095248 Inf 3.451 0.8309
## -0.1371063 0.02827425 Inf -4.849 0.0140
## 0.0181766 0.01330261 Inf 1.366 1.0000
## 0.0364615 0.01093844 Inf 3.333 0.9058
## 0.0366904 0.01175832 Inf 3.120 0.9782
## 0.0377951 0.01152124 Inf 3.280 0.9310
## -0.0084660 0.01624202 Inf -0.521 1.0000
## -0.5420611 0.03434186 Inf -15.784 <.0001
## 0.0376401 0.01086481 Inf 3.464 0.8206
## 0.0371219 0.01099158 Inf 3.377 0.8809
## 0.0377951 0.01091876 Inf 3.461 0.8228
## 0.0377951 0.01097434 Inf 3.444 0.8360
## 0.0377951 0.01088388 Inf 3.473 0.8142
## 0.0377951 0.01152124 Inf 3.280 0.9310
## 0.0051987 0.02283746 Inf 0.228 1.0000
## 0.0377951 0.01091876 Inf 3.461 0.8228
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## 0.0377951 0.01091876 Inf 3.461 0.8228
## 0.0377951 0.01097434 Inf 3.444 0.8360
## 0.0377951 0.01088388 Inf 3.473 0.8142
## 0.0377951 0.01152124 Inf 3.280 0.9310
## -0.0139189 0.02936785 Inf -0.474 1.0000
## 0.0364723 0.01098605 Inf 3.320 0.9127
## 0.0377951 0.01089397 Inf 3.469 0.8167
## 0.0377951 0.01085995 Inf 3.480 0.8082
## 0.0377951 0.01095248 Inf 3.451 0.8309
## 0.0095239 0.00546476 Inf 1.743 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0091971 0.00556588 Inf 1.652 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## -0.0139923 0.00934975 Inf -1.497 1.0000
## -0.0545673 0.01792990 Inf -3.043 0.9890
## 0.0070727 0.00568471 Inf 1.244 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0089697 0.00558883 Inf 1.605 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## -0.1344781 0.02437669 Inf -5.517 0.0005
## -0.0608953 0.01891591 Inf -3.219 0.9538
## 0.0095239 0.00546476 Inf 1.743 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0088831 0.00559772 Inf 1.587 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## -0.0691619 0.01783295 Inf -3.878 0.4234
## 0.0051440 0.00629793 Inf 0.817 1.0000
## 0.0095239 0.00546476 Inf 1.743 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0062196 0.00590817 Inf 1.053 1.0000
## 0.0092693 0.00550643 Inf 1.683 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## 0.0074924 0.00575128 Inf 1.303 1.0000
## 0.0095239 0.00564277 Inf 1.688 1.0000
## 0.0093056 0.00548212 Inf 1.697 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## -0.0332175 0.02470246 Inf -1.345 1.0000
## 0.0080359 0.00568891 Inf 1.413 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## 0.0047521 0.00610596 Inf 0.778 1.0000
## -0.0741648 0.02083395 Inf -3.560 0.7399
## -0.9038211 0.01559895 Inf -57.941 <.0001
## -0.9649108 0.01144415 Inf -84.315 <.0001
## 0.0095239 0.00664408 Inf 1.433 1.0000
## 0.0079459 0.00569904 Inf 1.394 1.0000
## 0.0092693 0.00550643 Inf 1.683 1.0000
## 0.0090081 0.00545222 Inf 1.652 1.0000
## 0.0092021 0.00563703 Inf 1.632 1.0000
## 0.0095239 0.00553390 Inf 1.721 1.0000
## 0.0095239 0.00564277 Inf 1.688 1.0000
## 0.0095239 0.00546476 Inf 1.743 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## -0.0460133 0.02909534 Inf -1.581 1.0000
## 0.0095239 0.00553390 Inf 1.721 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## 0.0089810 0.00558768 Inf 1.607 1.0000
## 0.0088982 0.00572251 Inf 1.555 1.0000
## 0.0074539 0.00564706 Inf 1.320 1.0000
## 0.0040795 0.00885775 Inf 0.461 1.0000
## 0.0038705 0.00895025 Inf 0.432 1.0000
## 0.0061772 0.00591364 Inf 1.045 1.0000
## -0.0068177 0.00771388 Inf -0.884 1.0000
## -0.9685233 0.00623711 Inf -155.284 <.0001
## -0.9683902 0.00685500 Inf -141.268 <.0001
## -0.0135385 0.00926670 Inf -1.461 1.0000
## -0.0097383 0.00935517 Inf -1.041 1.0000
## 0.0076578 0.00562742 Inf 1.361 1.0000
## 0.0081902 0.00713838 Inf 1.147 1.0000
## -0.2980125 0.06830834 Inf -4.363 0.1014
## -0.0066928 0.00801379 Inf -0.835 1.0000
## 0.0054510 0.00590182 Inf 0.924 1.0000
## 0.0093409 0.00542920 Inf 1.720 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## -0.1653776 0.02667765 Inf -6.199 <.0001
## -0.0100946 0.00943289 Inf -1.070 1.0000
## 0.0081903 0.00557780 Inf 1.468 1.0000
## 0.0084191 0.00705058 Inf 1.194 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## -0.0367373 0.01327247 Inf -2.768 0.9996
## -0.5703323 0.03301592 Inf -17.274 <.0001
## 0.0093689 0.00542731 Inf 1.726 1.0000
## 0.0088507 0.00567880 Inf 1.559 1.0000
## 0.0095239 0.00553390 Inf 1.721 1.0000
## 0.0095239 0.00564277 Inf 1.688 1.0000
## 0.0095239 0.00546476 Inf 1.743 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## -0.0230725 0.02082738 Inf -1.108 1.0000
## 0.0095239 0.00553390 Inf 1.721 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## 0.0095239 0.00553390 Inf 1.721 1.0000
## 0.0095239 0.00564277 Inf 1.688 1.0000
## 0.0095239 0.00546476 Inf 1.743 1.0000
## 0.0095239 0.00664408 Inf 1.433 1.0000
## -0.0421902 0.02783627 Inf -1.516 1.0000
## 0.0082011 0.00567054 Inf 1.446 1.0000
## 0.0095239 0.00548483 Inf 1.736 1.0000
## 0.0095239 0.00541694 Inf 1.758 1.0000
## 0.0095239 0.00560014 Inf 1.701 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0003268 0.00277775 Inf -0.118 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0235162 0.00803817 Inf -2.926 0.9968
## -0.0640912 0.01728885 Inf -3.707 0.5955
## -0.0024513 0.00301882 Inf -0.812 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0005542 0.00282464 Inf -0.196 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1440020 0.02390803 Inf -6.023 <.0001
## -0.0704192 0.01830966 Inf -3.846 0.4548
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0006408 0.00284263 Inf -0.225 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0786858 0.01718870 Inf -4.578 0.0448
## -0.0043800 0.00406354 Inf -1.078 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0003268 0.00468999 Inf -0.070 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0235162 0.00888214 Inf -2.648 0.9999
## -0.0640912 0.01769702 Inf -3.622 0.6813
## -0.0024513 0.00483667 Inf -0.507 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.0231894 0.00810669 Inf -2.861 0.9986
## -0.0637644 0.01732055 Inf -3.681 0.6216
## -0.0021244 0.00319930 Inf -0.664 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0002274 0.00301712 Inf -0.075 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.1436752 0.02393101 Inf -6.004 <.0001
## -0.0700924 0.01833958 Inf -3.822 0.4787
## 0.0003268 0.00277775 Inf 0.118 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0003140 0.00303396 Inf -0.103 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.0783590 0.01722057 Inf -4.550 0.0500
## -0.0040531 0.00419912 Inf -0.965 1.0000
## 0.0003268 0.00277775 Inf 0.118 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0029775 0.00358445 Inf -0.831 1.0000
## 0.0000723 0.00286012 Inf 0.025 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.0017047 0.00331447 Inf -0.514 1.0000
## 0.0003268 0.00311338 Inf 0.105 1.0000
## 0.0001085 0.00281286 Inf 0.039 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0424145 0.02426241 Inf -1.748 1.0000
## -0.0011612 0.00320275 Inf -0.363 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.0044450 0.00390653 Inf -1.138 1.0000
## -0.0833618 0.02031227 Inf -4.104 0.2354
## -0.9130182 0.01483331 Inf -61.552 <.0001
## -0.9741079 0.01039651 Inf -93.696 <.0001
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0012512 0.00322107 Inf -0.388 1.0000
## 0.0000723 0.00286012 Inf 0.025 1.0000
## -0.0001890 0.00275566 Inf -0.069 1.0000
## 0.0000050 0.00310445 Inf 0.002 1.0000
## 0.0003268 0.00291142 Inf 0.112 1.0000
## 0.0003268 0.00311338 Inf 0.105 1.0000
## 0.0003268 0.00277775 Inf 0.118 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0552103 0.02872352 Inf -1.922 1.0000
## 0.0003268 0.00291142 Inf 0.112 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.0002161 0.00301494 Inf -0.072 1.0000
## -0.0002989 0.00325839 Inf -0.092 1.0000
## -0.0017432 0.00313031 Inf -0.557 1.0000
## -0.0051176 0.00751359 Inf -0.681 1.0000
## -0.0053266 0.00762274 Inf -0.699 1.0000
## -0.0030199 0.00359360 Inf -0.840 1.0000
## -0.0160147 0.00614070 Inf -2.608 1.0000
## -0.9777204 0.00401180 Inf -243.711 <.0001
## -0.9775872 0.00491742 Inf -198.801 <.0001
## -0.0227356 0.00801043 Inf -2.838 0.9989
## -0.0189354 0.00810963 Inf -2.335 1.0000
## -0.0015393 0.00309386 Inf -0.498 1.0000
## -0.0010069 0.00537086 Inf -0.187 1.0000
## -0.3072096 0.06814782 Inf -4.508 0.0590
## -0.0158899 0.00651331 Inf -2.440 1.0000
## -0.0037461 0.00357667 Inf -1.047 1.0000
## 0.0001438 0.00270809 Inf 0.053 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## -0.1745747 0.02626989 Inf -6.645 <.0001
## -0.0192917 0.00819946 Inf -2.353 1.0000
## -0.0010068 0.00300025 Inf -0.336 1.0000
## -0.0007779 0.00525300 Inf -0.148 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0459343 0.01243495 Inf -3.694 0.6089
## -0.5795294 0.03267166 Inf -17.738 <.0001
## 0.0001718 0.00270416 Inf 0.064 1.0000
## -0.0003464 0.00318123 Inf -0.109 1.0000
## 0.0003268 0.00291142 Inf 0.112 1.0000
## 0.0003268 0.00311338 Inf 0.105 1.0000
## 0.0003268 0.00277775 Inf 0.118 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0322696 0.02030191 Inf -1.589 1.0000
## 0.0003268 0.00291142 Inf 0.112 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## 0.0003268 0.00291142 Inf 0.112 1.0000
## 0.0003268 0.00311338 Inf 0.105 1.0000
## 0.0003268 0.00277775 Inf 0.118 1.0000
## 0.0003268 0.00468999 Inf 0.070 1.0000
## -0.0513872 0.02744719 Inf -1.872 1.0000
## -0.0009960 0.00316929 Inf -0.314 1.0000
## 0.0003268 0.00281702 Inf 0.116 1.0000
## 0.0003268 0.00268246 Inf 0.122 1.0000
## 0.0003268 0.00303543 Inf 0.108 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0235162 0.00805183 Inf -2.921 0.9970
## -0.0640912 0.01729520 Inf -3.706 0.5969
## -0.0024513 0.00305499 Inf -0.802 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0005542 0.00286326 Inf -0.194 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1440020 0.02391263 Inf -6.022 <.0001
## -0.0704192 0.01831566 Inf -3.845 0.4560
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0006408 0.00288102 Inf -0.222 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0786858 0.01719509 Inf -4.576 0.0451
## -0.0043800 0.00409049 Inf -1.071 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0033044 0.00345639 Inf -0.956 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0020315 0.00317532 Inf -0.640 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0002183 0.00264708 Inf -0.082 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0427414 0.02424426 Inf -1.763 1.0000
## -0.0014880 0.00305842 Inf -0.487 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00800574 Inf -2.937 0.9963
## -0.0640912 0.01727380 Inf -3.710 0.5922
## -0.0024513 0.00293137 Inf -0.836 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0005542 0.00273098 Inf -0.203 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0235162 0.00813082 Inf -2.892 0.9978
## -0.0640912 0.01733212 Inf -3.698 0.6049
## -0.0024513 0.00325748 Inf -0.752 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00307839 Inf -0.180 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0405750 0.01885672 Inf -2.152 1.0000
## 0.0210650 0.00818526 Inf 2.574 1.0000
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0229621 0.00812208 Inf 2.827 0.9991
## 0.0235162 0.00805183 Inf 2.921 0.9970
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## -0.1204858 0.02506724 Inf -4.806 0.0170
## -0.0469030 0.01979641 Inf -2.369 1.0000
## 0.0235162 0.00803817 Inf 2.926 0.9968
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0228755 0.00812805 Inf 2.814 0.9992
## 0.0235162 0.00805183 Inf 2.921 0.9970
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## -0.0551696 0.01876419 Inf -2.940 0.9962
## 0.0191363 0.00861966 Inf 2.220 1.0000
## 0.0235162 0.00803817 Inf 2.926 0.9968
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0202119 0.00834072 Inf 2.423 1.0000
## 0.0232617 0.00806612 Inf 2.884 0.9981
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## 0.0214847 0.00823230 Inf 2.610 1.0000
## 0.0235162 0.00816024 Inf 2.882 0.9981
## 0.0232979 0.00804961 Inf 2.894 0.9978
## 0.0235162 0.00888214 Inf 2.648 0.9999
## -0.0192251 0.02538447 Inf -0.757 1.0000
## 0.0220282 0.00818973 Inf 2.690 0.9999
## 0.0235162 0.00805183 Inf 2.921 0.9970
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## 0.0187444 0.00847987 Inf 2.210 1.0000
## -0.0601724 0.02163639 Inf -2.781 0.9995
## -0.8898288 0.01670942 Inf -53.253 <.0001
## -0.9509185 0.01290100 Inf -73.709 <.0001
## 0.0235162 0.00888214 Inf 2.648 0.9999
## 0.0219383 0.00819662 Inf 2.676 0.9999
## 0.0232617 0.00806612 Inf 2.884 0.9981
## 0.0230004 0.00802876 Inf 2.865 0.9985
## 0.0231944 0.00815572 Inf 2.844 0.9988
## 0.0235162 0.00808534 Inf 2.909 0.9974
## 0.0235162 0.00816024 Inf 2.882 0.9981
## 0.0235162 0.00803817 Inf 2.926 0.9968
## 0.0235162 0.00888214 Inf 2.648 0.9999
## -0.0320209 0.02967577 Inf -1.079 1.0000
## 0.0235162 0.00808534 Inf 2.909 0.9974
## 0.0235162 0.00805183 Inf 2.921 0.9970
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## 0.0229733 0.00812131 Inf 2.829 0.9990
## 0.0228905 0.00821452 Inf 2.787 0.9995
## 0.0214462 0.00815977 Inf 2.628 1.0000
## 0.0180718 0.01063341 Inf 1.700 1.0000
## 0.0178628 0.01071036 Inf 1.668 1.0000
## 0.0201695 0.00834453 Inf 2.417 1.0000
## 0.0071747 0.00969060 Inf 0.740 1.0000
## -0.9545310 0.00861951 Inf -110.741 <.0001
## -0.9543978 0.00907680 Inf -105.147 <.0001
## 0.0004538 0.01096296 Inf 0.041 1.0000
## 0.0042540 0.01103999 Inf 0.385 1.0000
## 0.0216501 0.00814652 Inf 2.658 0.9999
## 0.0221825 0.00925573 Inf 2.397 1.0000
## -0.2840202 0.06856048 Inf -4.143 0.2098
## 0.0072995 0.00993109 Inf 0.735 1.0000
## 0.0194433 0.00833508 Inf 2.333 1.0000
## 0.0233332 0.00801372 Inf 2.912 0.9973
## 0.0235162 0.00813082 Inf 2.892 0.9978
## -0.1513852 0.02731116 Inf -5.543 0.0004
## 0.0038977 0.01110571 Inf 0.351 1.0000
## 0.0221826 0.00811319 Inf 2.734 0.9998
## 0.0224115 0.00918852 Inf 2.439 1.0000
## 0.0235162 0.00888214 Inf 2.648 0.9999
## -0.0227449 0.01450181 Inf -1.568 1.0000
## -0.5563400 0.03354483 Inf -16.585 <.0001
## 0.0233612 0.00801249 Inf 2.916 0.9972
## 0.0228430 0.00818406 Inf 2.791 0.9994
## 0.0235162 0.00808534 Inf 2.909 0.9974
## 0.0235162 0.00816024 Inf 2.882 0.9981
## 0.0235162 0.00803817 Inf 2.926 0.9968
## 0.0235162 0.00888214 Inf 2.648 0.9999
## -0.0090802 0.02163339 Inf -0.420 1.0000
## 0.0235162 0.00808534 Inf 2.909 0.9974
## 0.0235162 0.00805183 Inf 2.921 0.9970
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## 0.0235162 0.00808534 Inf 2.909 0.9974
## 0.0235162 0.00816024 Inf 2.882 0.9981
## 0.0235162 0.00803817 Inf 2.926 0.9968
## 0.0235162 0.00888214 Inf 2.648 0.9999
## -0.0281978 0.02844261 Inf -0.991 1.0000
## 0.0221934 0.00817725 Inf 2.714 0.9998
## 0.0235162 0.00805183 Inf 2.921 0.9970
## 0.0235162 0.00800574 Inf 2.937 0.9963
## 0.0235162 0.00813082 Inf 2.892 0.9978
## 0.0616400 0.01735581 Inf 3.552 0.7474
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0635370 0.01732757 Inf 3.667 0.6364
## 0.0640912 0.01729520 Inf 3.706 0.5969
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## -0.0799108 0.02936064 Inf -2.722 0.9998
## -0.0063280 0.02501041 Inf -0.253 1.0000
## 0.0640912 0.01728885 Inf 3.707 0.5955
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0634504 0.01733030 Inf 3.661 0.6420
## 0.0640912 0.01729520 Inf 3.706 0.5969
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## -0.0145946 0.02420149 Inf -0.603 1.0000
## 0.0597113 0.01756347 Inf 3.400 0.8667
## 0.0640912 0.01728885 Inf 3.707 0.5955
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0607869 0.01742903 Inf 3.488 0.8022
## 0.0638366 0.01730165 Inf 3.690 0.6133
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## 0.0620597 0.01737835 Inf 3.571 0.7295
## 0.0640912 0.01734594 Inf 3.695 0.6079
## 0.0638729 0.01729399 Inf 3.693 0.6095
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0213498 0.02963223 Inf 0.720 1.0000
## 0.0626032 0.01735865 Inf 3.606 0.6960
## 0.0640912 0.01729520 Inf 3.706 0.5969
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## 0.0593194 0.01749502 Inf 3.391 0.8725
## -0.0195975 0.02649055 Inf -0.740 1.0000
## -0.8492538 0.02268563 Inf -37.436 <.0001
## -0.9103435 0.02003632 Inf -45.435 <.0001
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0625132 0.01736183 Inf 3.601 0.7016
## 0.0638366 0.01730165 Inf 3.690 0.6133
## 0.0635754 0.01728406 Inf 3.678 0.6248
## 0.0637694 0.01734355 Inf 3.677 0.6263
## 0.0640912 0.01731083 Inf 3.702 0.6003
## 0.0640912 0.01734594 Inf 3.695 0.6079
## 0.0640912 0.01728885 Inf 3.707 0.5955
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0085540 0.03338114 Inf 0.256 1.0000
## 0.0640912 0.01731083 Inf 3.702 0.6003
## 0.0640912 0.01729520 Inf 3.706 0.5969
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## 0.0635482 0.01732722 Inf 3.668 0.6356
## 0.0634654 0.01737104 Inf 3.654 0.6497
## 0.0620212 0.01734409 Inf 3.576 0.7250
## 0.0586468 0.01863387 Inf 3.147 0.9729
## 0.0584378 0.01867776 Inf 3.129 0.9766
## 0.0607445 0.01743083 Inf 3.485 0.8044
## 0.0477496 0.01810667 Inf 2.637 1.0000
## -0.9139560 0.01758525 Inf -51.973 <.0001
## -0.9138229 0.01781393 Inf -51.298 <.0001
## 0.0410287 0.01881595 Inf 2.181 1.0000
## 0.0448290 0.01886221 Inf 2.377 1.0000
## 0.0622251 0.01733801 Inf 3.589 0.7127
## 0.0627575 0.01788641 Inf 3.509 0.7848
## -0.2434452 0.07024665 Inf -3.466 0.8197
## 0.0478745 0.01823656 Inf 2.625 1.0000
## 0.0600183 0.01742579 Inf 3.444 0.8358
## 0.0639082 0.01727735 Inf 3.699 0.6038
## 0.0640912 0.01733212 Inf 3.698 0.6049
## -0.1108103 0.03129919 Inf -3.540 0.7574
## 0.0444727 0.01890062 Inf 2.353 1.0000
## 0.0627576 0.01732279 Inf 3.623 0.6801
## 0.0629864 0.01785190 Inf 3.528 0.7680
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0178300 0.02107092 Inf 0.846 1.0000
## -0.5157650 0.03687829 Inf -13.986 <.0001
## 0.0639362 0.01727680 Inf 3.701 0.6020
## 0.0634180 0.01735661 Inf 3.654 0.6494
## 0.0640912 0.01731083 Inf 3.702 0.6003
## 0.0640912 0.01734594 Inf 3.695 0.6079
## 0.0640912 0.01728885 Inf 3.707 0.5955
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0314948 0.02649085 Inf 1.189 1.0000
## 0.0640912 0.01731083 Inf 3.702 0.6003
## 0.0640912 0.01729520 Inf 3.706 0.5969
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## 0.0640912 0.01731083 Inf 3.702 0.6003
## 0.0640912 0.01734594 Inf 3.695 0.6079
## 0.0640912 0.01728885 Inf 3.707 0.5955
## 0.0640912 0.01769702 Inf 3.622 0.6813
## 0.0123771 0.03228997 Inf 0.383 1.0000
## 0.0627684 0.01735289 Inf 3.617 0.6856
## 0.0640912 0.01729520 Inf 3.706 0.5969
## 0.0640912 0.01727380 Inf 3.710 0.5922
## 0.0640912 0.01733212 Inf 3.698 0.6049
## 0.0024513 0.00483667 Inf 0.507 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## 0.0018971 0.00323979 Inf 0.586 1.0000
## 0.0024513 0.00305499 Inf 0.802 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## -0.1415508 0.02395681 Inf -5.909 0.0001
## -0.0679680 0.01837282 Inf -3.699 0.6034
## 0.0024513 0.00301882 Inf 0.812 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## 0.0018105 0.00325538 Inf 0.556 1.0000
## 0.0024513 0.00305499 Inf 0.802 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## -0.0762346 0.01725592 Inf -4.418 0.0830
## -0.0019287 0.00435884 Inf -0.442 1.0000
## 0.0024513 0.00301882 Inf 0.812 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## -0.0008531 0.00377124 Inf -0.226 1.0000
## 0.0021967 0.00309447 Inf 0.710 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## 0.0004197 0.00351686 Inf 0.119 1.0000
## 0.0024513 0.00333024 Inf 0.736 1.0000
## 0.0022329 0.00305088 Inf 0.732 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## -0.0402901 0.02428795 Inf -1.659 1.0000
## 0.0009633 0.00341234 Inf 0.282 1.0000
## 0.0024513 0.00305499 Inf 0.802 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## -0.0023205 0.00407742 Inf -0.569 1.0000
## -0.0812374 0.02034225 Inf -3.994 0.3196
## -0.9108938 0.01489046 Inf -61.173 <.0001
## -0.9719834 0.01047267 Inf -92.811 <.0001
## 0.0024513 0.00483667 Inf 0.507 1.0000
## 0.0008733 0.00342945 Inf 0.255 1.0000
## 0.0021967 0.00309447 Inf 0.710 1.0000
## 0.0019354 0.00299786 Inf 0.646 1.0000
## 0.0021294 0.00332153 Inf 0.641 1.0000
## 0.0024513 0.00314225 Inf 0.780 1.0000
## 0.0024513 0.00333024 Inf 0.736 1.0000
## 0.0024513 0.00301882 Inf 0.812 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## -0.0530859 0.02874488 Inf -1.847 1.0000
## 0.0024513 0.00314225 Inf 0.780 1.0000
## 0.0024513 0.00305499 Inf 0.802 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## 0.0019083 0.00323778 Inf 0.589 1.0000
## 0.0018255 0.00346552 Inf 0.527 1.0000
## 0.0003812 0.00334383 Inf 0.114 1.0000
## -0.0029932 0.00760357 Inf -0.394 1.0000
## -0.0032022 0.00771136 Inf -0.415 1.0000
## -0.0008955 0.00377990 Inf -0.237 1.0000
## -0.0138903 0.00624608 Inf -2.224 1.0000
## -0.9755959 0.00420291 Inf -232.124 <.0001
## -0.9754628 0.00507461 Inf -192.224 <.0001
## -0.0206112 0.00809002 Inf -2.548 1.0000
## -0.0168110 0.00818903 Inf -2.053 1.0000
## 0.0005851 0.00330995 Inf 0.177 1.0000
## 0.0011175 0.00549852 Inf 0.203 1.0000
## -0.3050852 0.06815760 Inf -4.476 0.0667
## -0.0137655 0.00661279 Inf -2.082 1.0000
## -0.0016217 0.00376318 Inf -0.431 1.0000
## 0.0022683 0.00295462 Inf 0.768 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## -0.1724502 0.02629370 Inf -6.559 <.0001
## -0.0171673 0.00827792 Inf -2.074 1.0000
## 0.0011176 0.00322321 Inf 0.347 1.0000
## 0.0013465 0.00538361 Inf 0.250 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## -0.0438099 0.01248454 Inf -3.509 0.7844
## -0.5774050 0.03269490 Inf -17.660 <.0001
## 0.0022962 0.00295104 Inf 0.778 1.0000
## 0.0017780 0.00339302 Inf 0.524 1.0000
## 0.0024513 0.00314225 Inf 0.780 1.0000
## 0.0024513 0.00333024 Inf 0.736 1.0000
## 0.0024513 0.00301882 Inf 0.812 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## -0.0301452 0.02033285 Inf -1.483 1.0000
## 0.0024513 0.00314225 Inf 0.780 1.0000
## 0.0024513 0.00305499 Inf 0.802 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## 0.0024513 0.00314225 Inf 0.780 1.0000
## 0.0024513 0.00333024 Inf 0.736 1.0000
## 0.0024513 0.00301882 Inf 0.812 1.0000
## 0.0024513 0.00483667 Inf 0.507 1.0000
## -0.0492628 0.02746960 Inf -1.793 1.0000
## 0.0011284 0.00338114 Inf 0.334 1.0000
## 0.0024513 0.00305499 Inf 0.802 1.0000
## 0.0024513 0.00293137 Inf 0.836 1.0000
## 0.0024513 0.00325748 Inf 0.752 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005542 0.00471791 Inf -0.117 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1440020 0.02420484 Inf -5.949 <.0001
## -0.0704192 0.01869555 Inf -3.767 0.5346
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0005542 0.00286326 Inf 0.194 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## -0.1434478 0.02393612 Inf -5.993 <.0001
## -0.0698650 0.01834621 Inf -3.808 0.4925
## 0.0005542 0.00282464 Inf 0.196 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0000866 0.00307685 Inf -0.028 1.0000
## 0.0005542 0.00286326 Inf 0.194 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## -0.0781316 0.01722762 Inf -4.535 0.0530
## -0.0038258 0.00422988 Inf -0.904 1.0000
## 0.0005542 0.00282464 Inf 0.196 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0027502 0.00362054 Inf -0.760 1.0000
## 0.0002996 0.00290564 Inf 0.103 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## -0.0014773 0.00335361 Inf -0.441 1.0000
## 0.0005542 0.00315529 Inf 0.176 1.0000
## 0.0003359 0.00285913 Inf 0.117 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0421872 0.02426746 Inf -1.738 1.0000
## -0.0009338 0.00324331 Inf -0.288 1.0000
## 0.0005542 0.00286326 Inf 0.194 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## -0.0042176 0.00393954 Inf -1.071 1.0000
## -0.0831345 0.02031825 Inf -4.092 0.2440
## -0.9127909 0.01484328 Inf -61.495 <.0001
## -0.9738805 0.01041016 Inf -93.551 <.0001
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0010238 0.00326140 Inf -0.314 1.0000
## 0.0002996 0.00290564 Inf 0.103 1.0000
## 0.0000383 0.00280284 Inf 0.014 1.0000
## 0.0002323 0.00314643 Inf 0.074 1.0000
## 0.0005542 0.00295619 Inf 0.187 1.0000
## 0.0005542 0.00315529 Inf 0.176 1.0000
## 0.0005542 0.00282464 Inf 0.196 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0549830 0.02872777 Inf -1.914 1.0000
## 0.0005542 0.00295619 Inf 0.187 1.0000
## 0.0005542 0.00286326 Inf 0.194 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## 0.0000112 0.00305812 Inf 0.004 1.0000
## -0.0000716 0.00329838 Inf -0.022 1.0000
## -0.0015158 0.00317172 Inf -0.478 1.0000
## -0.0048902 0.00753077 Inf -0.649 1.0000
## -0.0050992 0.00763967 Inf -0.667 1.0000
## -0.0027925 0.00362961 Inf -0.769 1.0000
## -0.0157874 0.00616123 Inf -2.562 1.0000
## -0.9774930 0.00404676 Inf -241.549 <.0001
## -0.9773599 0.00494600 Inf -197.606 <.0001
## -0.0225083 0.00802601 Inf -2.804 0.9993
## -0.0187080 0.00812511 Inf -2.303 1.0000
## -0.0013120 0.00313578 Inf -0.418 1.0000
## -0.0007795 0.00539516 Inf -0.144 1.0000
## -0.3069822 0.06814969 Inf -4.505 0.0598
## -0.0156626 0.00653267 Inf -2.398 1.0000
## -0.0035187 0.00361277 Inf -0.974 1.0000
## 0.0003712 0.00275613 Inf 0.135 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## -0.1743473 0.02627458 Inf -6.636 <.0001
## -0.0190643 0.00821476 Inf -2.321 1.0000
## -0.0007794 0.00304353 Inf -0.256 1.0000
## -0.0005506 0.00527786 Inf -0.104 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0457070 0.01244479 Inf -3.673 0.6304
## -0.5793020 0.03267589 Inf -17.729 <.0001
## 0.0003991 0.00275227 Inf 0.145 1.0000
## -0.0001190 0.00322216 Inf -0.037 1.0000
## 0.0005542 0.00295619 Inf 0.187 1.0000
## 0.0005542 0.00315529 Inf 0.176 1.0000
## 0.0005542 0.00282464 Inf 0.196 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0320422 0.02030800 Inf -1.578 1.0000
## 0.0005542 0.00295619 Inf 0.187 1.0000
## 0.0005542 0.00286326 Inf 0.194 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## 0.0005542 0.00295619 Inf 0.187 1.0000
## 0.0005542 0.00315529 Inf 0.176 1.0000
## 0.0005542 0.00282464 Inf 0.196 1.0000
## 0.0005542 0.00471791 Inf 0.117 1.0000
## -0.0511599 0.02745164 Inf -1.864 1.0000
## -0.0007686 0.00321030 Inf -0.239 1.0000
## 0.0005542 0.00286326 Inf 0.194 1.0000
## 0.0005542 0.00273098 Inf 0.203 1.0000
## 0.0005542 0.00307839 Inf 0.180 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1440020 0.02391263 Inf -6.022 <.0001
## -0.0704192 0.01831566 Inf -3.845 0.4560
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0006408 0.00288102 Inf -0.222 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0786858 0.01719509 Inf -4.576 0.0451
## -0.0043800 0.00409049 Inf -1.071 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0033044 0.00345639 Inf -0.956 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0020315 0.00317532 Inf -0.640 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0002183 0.00264708 Inf -0.082 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0427414 0.02424426 Inf -1.763 1.0000
## -0.0014880 0.00305842 Inf -0.487 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02389715 Inf -6.026 <.0001
## -0.0704192 0.01829544 Inf -3.849 0.4519
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0006408 0.00274959 Inf -0.233 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1440020 0.02393934 Inf -6.015 <.0001
## -0.0704192 0.01835052 Inf -3.837 0.4632
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00309491 Inf -0.207 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0735828 0.02997270 Inf 2.455 1.0000
## 0.1440020 0.02390803 Inf 6.023 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1433612 0.02393811 Inf 5.989 <.0001
## 0.1440020 0.02391263 Inf 6.022 <.0001
## 0.1440020 0.02389715 Inf 6.026 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## 0.0653162 0.02930112 Inf 2.229 1.0000
## 0.1396221 0.02410791 Inf 5.792 0.0001
## 0.1440020 0.02390803 Inf 6.023 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1406977 0.02401002 Inf 5.860 0.0001
## 0.1437474 0.02391733 Inf 6.010 <.0001
## 0.1440020 0.02389715 Inf 6.026 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## 0.1419705 0.02397310 Inf 5.922 <.0001
## 0.1440020 0.02394935 Inf 6.013 <.0001
## 0.1437837 0.02391178 Inf 6.013 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1012606 0.03392483 Inf 2.985 0.9939
## 0.1425140 0.02395875 Inf 5.948 <.0001
## 0.1440020 0.02391263 Inf 6.022 <.0001
## 0.1440020 0.02389715 Inf 6.026 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## 0.1392302 0.02405813 Inf 5.787 0.0001
## 0.0603133 0.03121847 Inf 1.932 1.0000
## -0.7693430 0.02805472 Inf -27.423 <.0001
## -0.8304327 0.02596109 Inf -31.988 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1424240 0.02396106 Inf 5.944 <.0001
## 0.1437474 0.02391733 Inf 6.010 <.0001
## 0.1434862 0.02390463 Inf 6.002 <.0001
## 0.1436802 0.02394766 Inf 6.000 <.0001
## 0.1440020 0.02392393 Inf 6.019 <.0001
## 0.1440020 0.02394935 Inf 6.013 <.0001
## 0.1440020 0.02390803 Inf 6.023 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.0884649 0.03724428 Inf 2.375 1.0000
## 0.1440020 0.02392393 Inf 6.019 <.0001
## 0.1440020 0.02391263 Inf 6.022 <.0001
## 0.1440020 0.02389715 Inf 6.026 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## 0.1434591 0.02393587 Inf 5.993 <.0001
## 0.1433763 0.02396761 Inf 5.982 <.0001
## 0.1419320 0.02394827 Inf 5.927 <.0001
## 0.1385576 0.02489865 Inf 5.565 0.0004
## 0.1383486 0.02493153 Inf 5.549 0.0004
## 0.1406553 0.02401132 Inf 5.858 0.0001
## 0.1276604 0.02450756 Inf 5.209 0.0025
## -0.8340452 0.02412015 Inf -34.579 <.0001
## -0.8339121 0.02428737 Inf -34.335 <.0001
## 0.1209396 0.02503657 Inf 4.831 0.0153
## 0.1247398 0.02507113 Inf 4.975 0.0078
## 0.1421359 0.02394385 Inf 5.936 <.0001
## 0.1426683 0.02434382 Inf 5.861 0.0001
## -0.1635344 0.07216187 Inf -2.266 1.0000
## 0.1277853 0.02460367 Inf 5.194 0.0027
## 0.1399291 0.02400775 Inf 5.828 0.0001
## 0.1438190 0.02389974 Inf 6.018 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## -0.0308995 0.03539004 Inf -0.873 1.0000
## 0.1243835 0.02510006 Inf 4.955 0.0086
## 0.1426684 0.02393276 Inf 5.961 <.0001
## 0.1428972 0.02431845 Inf 5.876 0.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.0977408 0.02677335 Inf 3.651 0.6526
## -0.4358542 0.04040536 Inf -10.787 <.0001
## 0.1438470 0.02389934 Inf 6.019 <.0001
## 0.1433288 0.02395717 Inf 5.983 <.0001
## 0.1440020 0.02392393 Inf 6.019 <.0001
## 0.1440020 0.02394935 Inf 6.013 <.0001
## 0.1440020 0.02390803 Inf 6.023 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.1114056 0.03121820 Inf 3.569 0.7318
## 0.1440020 0.02392393 Inf 6.019 <.0001
## 0.1440020 0.02391263 Inf 6.022 <.0001
## 0.1440020 0.02389715 Inf 6.026 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## 0.1440020 0.02392393 Inf 6.019 <.0001
## 0.1440020 0.02394935 Inf 6.013 <.0001
## 0.1440020 0.02390803 Inf 6.023 <.0001
## 0.1440020 0.02420484 Inf 5.949 <.0001
## 0.0922879 0.03626949 Inf 2.545 1.0000
## 0.1426792 0.02395456 Inf 5.956 <.0001
## 0.1440020 0.02391263 Inf 6.022 <.0001
## 0.1440020 0.02389715 Inf 6.026 <.0001
## 0.1440020 0.02393934 Inf 6.015 <.0001
## 0.0704192 0.01830966 Inf 3.846 0.4548
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0697784 0.01834878 Inf 3.803 0.4978
## 0.0704192 0.01831566 Inf 3.845 0.4560
## 0.0704192 0.01829544 Inf 3.849 0.4519
## 0.0704192 0.01835052 Inf 3.837 0.4632
## -0.0082666 0.02494044 Inf -0.331 1.0000
## 0.0660393 0.01856907 Inf 3.556 0.7430
## 0.0704192 0.01830966 Inf 3.846 0.4548
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0671149 0.01844199 Inf 3.639 0.6639
## 0.0701647 0.01832174 Inf 3.830 0.4710
## 0.0704192 0.01829544 Inf 3.849 0.4519
## 0.0704192 0.01835052 Inf 3.837 0.4632
## 0.0683877 0.01839414 Inf 3.718 0.5844
## 0.0704192 0.01836357 Inf 3.835 0.4659
## 0.0702009 0.01831450 Inf 3.833 0.4676
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0276779 0.03023881 Inf 0.915 1.0000
## 0.0689312 0.01837553 Inf 3.751 0.5503
## 0.0704192 0.01831566 Inf 3.845 0.4560
## 0.0704192 0.01829544 Inf 3.849 0.4519
## 0.0704192 0.01835052 Inf 3.837 0.4632
## 0.0656474 0.01850433 Inf 3.548 0.7508
## -0.0132694 0.02716731 Inf -0.488 1.0000
## -0.8429258 0.02347382 Inf -35.909 <.0001
## -0.9040155 0.02092417 Inf -43.204 <.0001
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0688412 0.01837854 Inf 3.746 0.5559
## 0.0701647 0.01832174 Inf 3.830 0.4710
## 0.0699034 0.01830511 Inf 3.819 0.4818
## 0.0700974 0.01836131 Inf 3.818 0.4829
## 0.0704192 0.01833041 Inf 3.842 0.4591
## 0.0704192 0.01836357 Inf 3.835 0.4659
## 0.0704192 0.01830966 Inf 3.846 0.4548
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0148821 0.03392072 Inf 0.439 1.0000
## 0.0704192 0.01833041 Inf 3.842 0.4591
## 0.0704192 0.01831566 Inf 3.845 0.4560
## 0.0704192 0.01829544 Inf 3.849 0.4519
## 0.0704192 0.01835052 Inf 3.837 0.4632
## 0.0698763 0.01834587 Inf 3.809 0.4918
## 0.0697935 0.01838726 Inf 3.796 0.5050
## 0.0683492 0.01836176 Inf 3.722 0.5799
## 0.0649748 0.01958456 Inf 3.318 0.9138
## 0.0647658 0.01962631 Inf 3.300 0.9223
## 0.0670725 0.01844368 Inf 3.637 0.6665
## 0.0540777 0.01908343 Inf 2.834 0.9990
## -0.9076280 0.01859045 Inf -48.822 <.0001
## -0.9074948 0.01880692 Inf -48.253 <.0001
## 0.0473568 0.01975759 Inf 2.397 1.0000
## 0.0511570 0.01980170 Inf 2.583 1.0000
## 0.0685531 0.01835603 Inf 3.735 0.5673
## 0.0690855 0.01887489 Inf 3.660 0.6430
## -0.2371172 0.07050476 Inf -3.363 0.8893
## 0.0542025 0.01920672 Inf 2.822 0.9991
## 0.0663463 0.01843890 Inf 3.598 0.7040
## 0.0702362 0.01829879 Inf 3.838 0.4624
## 0.0704192 0.01835052 Inf 3.837 0.4632
## -0.1044823 0.03187409 Inf -3.278 0.9320
## 0.0508007 0.01983829 Inf 2.561 1.0000
## 0.0690856 0.01834167 Inf 3.767 0.5346
## 0.0693145 0.01884219 Inf 3.679 0.6244
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0241581 0.02191574 Inf 1.102 1.0000
## -0.5094370 0.03736797 Inf -13.633 <.0001
## 0.0702642 0.01829827 Inf 3.840 0.4608
## 0.0697460 0.01837363 Inf 3.796 0.5048
## 0.0704192 0.01833041 Inf 3.842 0.4591
## 0.0704192 0.01836357 Inf 3.835 0.4659
## 0.0704192 0.01830966 Inf 3.846 0.4548
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0378228 0.02716771 Inf 1.392 1.0000
## 0.0704192 0.01833041 Inf 3.842 0.4591
## 0.0704192 0.01831566 Inf 3.845 0.4560
## 0.0704192 0.01829544 Inf 3.849 0.4519
## 0.0704192 0.01835052 Inf 3.837 0.4632
## 0.0704192 0.01833041 Inf 3.842 0.4591
## 0.0704192 0.01836357 Inf 3.835 0.4659
## 0.0704192 0.01830966 Inf 3.846 0.4548
## 0.0704192 0.01869555 Inf 3.767 0.5346
## 0.0187052 0.03284749 Inf 0.569 1.0000
## 0.0690964 0.01837010 Inf 3.761 0.5400
## 0.0704192 0.01831566 Inf 3.845 0.4560
## 0.0704192 0.01829544 Inf 3.849 0.4519
## 0.0704192 0.01835052 Inf 3.837 0.4632
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0006408 0.00284263 Inf -0.225 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0786858 0.01718870 Inf -4.578 0.0448
## -0.0043800 0.00406354 Inf -1.078 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0006408 0.00472871 Inf -0.136 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0786858 0.01759919 Inf -4.471 0.0680
## -0.0043800 0.00554910 Inf -0.789 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0006408 0.00288102 Inf 0.222 1.0000
## 0.0006408 0.00274959 Inf 0.233 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## -0.0780450 0.01723036 Inf -4.530 0.0543
## -0.0037392 0.00424177 Inf -0.882 1.0000
## 0.0006408 0.00284263 Inf 0.225 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0026636 0.00363447 Inf -0.733 1.0000
## 0.0003862 0.00292313 Inf 0.132 1.0000
## 0.0006408 0.00274959 Inf 0.233 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## -0.0013907 0.00336869 Inf -0.413 1.0000
## 0.0006408 0.00317141 Inf 0.202 1.0000
## 0.0004225 0.00287690 Inf 0.147 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0421006 0.02426943 Inf -1.735 1.0000
## -0.0008472 0.00325892 Inf -0.260 1.0000
## 0.0006408 0.00288102 Inf 0.222 1.0000
## 0.0006408 0.00274959 Inf 0.233 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## -0.0041310 0.00395229 Inf -1.045 1.0000
## -0.0830479 0.02032058 Inf -4.087 0.2474
## -0.9127043 0.01484714 Inf -61.473 <.0001
## -0.9737939 0.01041544 Inf -93.495 <.0001
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0009372 0.00327692 Inf -0.286 1.0000
## 0.0003862 0.00292313 Inf 0.132 1.0000
## 0.0001249 0.00282094 Inf 0.044 1.0000
## 0.0003189 0.00316258 Inf 0.101 1.0000
## 0.0006408 0.00297339 Inf 0.216 1.0000
## 0.0006408 0.00317141 Inf 0.202 1.0000
## 0.0006408 0.00284263 Inf 0.225 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0548964 0.02872942 Inf -1.911 1.0000
## 0.0006408 0.00297339 Inf 0.216 1.0000
## 0.0006408 0.00288102 Inf 0.222 1.0000
## 0.0006408 0.00274959 Inf 0.233 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## 0.0000978 0.00307472 Inf 0.032 1.0000
## 0.0000150 0.00331377 Inf 0.005 1.0000
## -0.0014292 0.00318766 Inf -0.448 1.0000
## -0.0048036 0.00753744 Inf -0.637 1.0000
## -0.0050126 0.00764623 Inf -0.656 1.0000
## -0.0027059 0.00364349 Inf -0.743 1.0000
## -0.0157008 0.00616918 Inf -2.545 1.0000
## -0.9774064 0.00406024 Inf -240.726 <.0001
## -0.9772733 0.00495703 Inf -197.149 <.0001
## -0.0224217 0.00803206 Inf -2.792 0.9994
## -0.0186214 0.00813112 Inf -2.290 1.0000
## -0.0012254 0.00315191 Inf -0.389 1.0000
## -0.0006929 0.00540457 Inf -0.128 1.0000
## -0.3068956 0.06815042 Inf -4.503 0.0601
## -0.0155759 0.00654018 Inf -2.382 1.0000
## -0.0034321 0.00362669 Inf -0.946 1.0000
## 0.0004578 0.00277457 Inf 0.165 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## -0.1742607 0.02627641 Inf -6.632 <.0001
## -0.0189777 0.00822070 Inf -2.309 1.0000
## -0.0006928 0.00306017 Inf -0.226 1.0000
## -0.0004640 0.00528748 Inf -0.088 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0456204 0.01244861 Inf -3.665 0.6385
## -0.5792154 0.03267753 Inf -17.725 <.0001
## 0.0004857 0.00277073 Inf 0.175 1.0000
## -0.0000324 0.00323791 Inf -0.010 1.0000
## 0.0006408 0.00297339 Inf 0.216 1.0000
## 0.0006408 0.00317141 Inf 0.202 1.0000
## 0.0006408 0.00284263 Inf 0.225 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0319556 0.02031037 Inf -1.573 1.0000
## 0.0006408 0.00297339 Inf 0.216 1.0000
## 0.0006408 0.00288102 Inf 0.222 1.0000
## 0.0006408 0.00274959 Inf 0.233 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## 0.0006408 0.00297339 Inf 0.216 1.0000
## 0.0006408 0.00317141 Inf 0.202 1.0000
## 0.0006408 0.00284263 Inf 0.225 1.0000
## 0.0006408 0.00472871 Inf 0.136 1.0000
## -0.0510733 0.02745337 Inf -1.860 1.0000
## -0.0006820 0.00322608 Inf -0.211 1.0000
## 0.0006408 0.00288102 Inf 0.222 1.0000
## 0.0006408 0.00274959 Inf 0.233 1.0000
## 0.0006408 0.00309491 Inf 0.207 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0786858 0.01719509 Inf -4.576 0.0451
## -0.0043800 0.00409049 Inf -1.071 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0033044 0.00345639 Inf -0.956 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0020315 0.00317532 Inf -0.640 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## -0.0002183 0.00264708 Inf -0.082 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0427414 0.02424426 Inf -1.763 1.0000
## -0.0014880 0.00305842 Inf -0.487 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01717356 Inf -4.582 0.0441
## -0.0043800 0.00399901 Inf -1.095 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0033044 0.00334763 Inf -0.987 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0786858 0.01723222 Inf -4.566 0.0469
## -0.0043800 0.00424385 Inf -1.032 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00363660 Inf -0.909 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0743059 0.01746469 Inf 4.255 0.1471
## 0.0786858 0.01718870 Inf 4.578 0.0448
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0753815 0.01732953 Inf 4.350 0.1061
## 0.0784312 0.01720157 Inf 4.560 0.0482
## 0.0786858 0.01717356 Inf 4.582 0.0441
## 0.0786858 0.01723222 Inf 4.566 0.0469
## 0.0766543 0.01727862 Inf 4.436 0.0775
## 0.0786858 0.01724612 Inf 4.563 0.0476
## 0.0784675 0.01719386 Inf 4.564 0.0474
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0359444 0.02957327 Inf 1.215 1.0000
## 0.0771978 0.01725883 Inf 4.473 0.0675
## 0.0786858 0.01719509 Inf 4.576 0.0451
## 0.0786858 0.01717356 Inf 4.582 0.0441
## 0.0786858 0.01723222 Inf 4.566 0.0469
## 0.0739140 0.01739583 Inf 4.249 0.1499
## -0.0050029 0.02642449 Inf -0.189 1.0000
## -0.8346592 0.02261100 Inf -36.914 <.0001
## -0.8957489 0.01995112 Inf -44.897 <.0001
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0771078 0.01726202 Inf 4.467 0.0691
## 0.0784312 0.01720157 Inf 4.560 0.0482
## 0.0781700 0.01718385 Inf 4.549 0.0502
## 0.0783640 0.01724371 Inf 4.545 0.0511
## 0.0786858 0.01721081 Inf 4.572 0.0459
## 0.0786858 0.01724612 Inf 4.563 0.0476
## 0.0786858 0.01718870 Inf 4.578 0.0448
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0231487 0.03332877 Inf 0.695 1.0000
## 0.0786858 0.01721081 Inf 4.572 0.0459
## 0.0786858 0.01719509 Inf 4.576 0.0451
## 0.0786858 0.01717356 Inf 4.582 0.0441
## 0.0786858 0.01723222 Inf 4.566 0.0469
## 0.0781429 0.01722727 Inf 4.536 0.0529
## 0.0780601 0.01727133 Inf 4.520 0.0564
## 0.0766158 0.01724415 Inf 4.443 0.0756
## 0.0732414 0.01854075 Inf 3.950 0.3569
## 0.0730324 0.01858485 Inf 3.930 0.3754
## 0.0753391 0.01733133 Inf 4.347 0.1072
## 0.0623442 0.01801046 Inf 3.462 0.8228
## -0.8993614 0.01748798 Inf -51.427 <.0001
## -0.8992283 0.01771792 Inf -50.752 <.0001
## 0.0556234 0.01872323 Inf 2.971 0.9947
## 0.0594236 0.01876980 Inf 3.166 0.9687
## 0.0768197 0.01723805 Inf 4.456 0.0719
## 0.0773521 0.01778956 Inf 4.348 0.1068
## -0.2288506 0.07022196 Inf -3.259 0.9397
## 0.0624691 0.01814104 Inf 3.444 0.8363
## 0.0746129 0.01732623 Inf 4.306 0.1235
## 0.0785028 0.01717712 Inf 4.570 0.0462
## 0.0786858 0.01723222 Inf 4.566 0.0469
## -0.0962157 0.03124342 Inf -3.080 0.9846
## 0.0590673 0.01880839 Inf 3.140 0.9743
## 0.0773522 0.01722277 Inf 4.491 0.0629
## 0.0775810 0.01775487 Inf 4.370 0.0989
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0324246 0.02098790 Inf 1.545 1.0000
## -0.5011704 0.03683184 Inf -13.607 <.0001
## 0.0785308 0.01717657 Inf 4.572 0.0458
## 0.0780126 0.01725682 Inf 4.521 0.0562
## 0.0786858 0.01721081 Inf 4.572 0.0459
## 0.0786858 0.01724612 Inf 4.563 0.0476
## 0.0786858 0.01718870 Inf 4.578 0.0448
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0460894 0.02642497 Inf 1.744 1.0000
## 0.0786858 0.01721081 Inf 4.572 0.0459
## 0.0786858 0.01719509 Inf 4.576 0.0451
## 0.0786858 0.01717356 Inf 4.582 0.0441
## 0.0786858 0.01723222 Inf 4.566 0.0469
## 0.0786858 0.01721081 Inf 4.572 0.0459
## 0.0786858 0.01724612 Inf 4.563 0.0476
## 0.0786858 0.01718870 Inf 4.578 0.0448
## 0.0786858 0.01759919 Inf 4.471 0.0680
## 0.0269717 0.03223584 Inf 0.837 1.0000
## 0.0773630 0.01725305 Inf 4.484 0.0647
## 0.0786858 0.01719509 Inf 4.576 0.0451
## 0.0786858 0.01717356 Inf 4.582 0.0441
## 0.0786858 0.01723222 Inf 4.566 0.0469
## 0.0043800 0.00406354 Inf 1.078 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## 0.0010756 0.00464775 Inf 0.231 1.0000
## 0.0041254 0.00411986 Inf 1.001 1.0000
## 0.0043800 0.00399901 Inf 1.095 1.0000
## 0.0043800 0.00424385 Inf 1.032 1.0000
## 0.0023484 0.00444466 Inf 0.528 1.0000
## 0.0043800 0.00429996 Inf 1.019 1.0000
## 0.0041616 0.00408725 Inf 1.018 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## -0.0383614 0.02443708 Inf -1.570 1.0000
## 0.0028920 0.00436280 Inf 0.663 1.0000
## 0.0043800 0.00409049 Inf 1.071 1.0000
## 0.0043800 0.00399901 Inf 1.095 1.0000
## 0.0043800 0.00424385 Inf 1.032 1.0000
## -0.0003919 0.00489864 Inf -0.080 1.0000
## -0.0793087 0.02051963 Inf -3.865 0.4362
## -0.9089651 0.01514528 Inf -60.016 <.0001
## -0.9700547 0.01082764 Inf -89.591 <.0001
## 0.0043800 0.00554910 Inf 0.789 1.0000
## 0.0028020 0.00437613 Inf 0.640 1.0000
## 0.0041254 0.00411986 Inf 1.001 1.0000
## 0.0038641 0.00404760 Inf 0.955 1.0000
## 0.0040581 0.00429298 Inf 0.945 1.0000
## 0.0043800 0.00415606 Inf 1.054 1.0000
## 0.0043800 0.00429996 Inf 1.019 1.0000
## 0.0043800 0.00406354 Inf 1.078 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## -0.0511572 0.02887081 Inf -1.772 1.0000
## 0.0043800 0.00415606 Inf 1.054 1.0000
## 0.0043800 0.00409049 Inf 1.071 1.0000
## 0.0043800 0.00399901 Inf 1.095 1.0000
## 0.0043800 0.00424385 Inf 1.032 1.0000
## 0.0038370 0.00422835 Inf 0.907 1.0000
## 0.0037542 0.00440512 Inf 0.852 1.0000
## 0.0023099 0.00430902 Inf 0.536 1.0000
## -0.0010645 0.00807354 Inf -0.132 1.0000
## -0.0012735 0.00817507 Inf -0.156 1.0000
## 0.0010332 0.00465476 Inf 0.222 1.0000
## -0.0119616 0.00680697 Inf -1.757 1.0000
## -0.9736672 0.00502088 Inf -193.924 <.0001
## -0.9735341 0.00577037 Inf -168.713 <.0001
## -0.0186825 0.00852935 Inf -2.190 1.0000
## -0.0148823 0.00862393 Inf -1.726 1.0000
## 0.0025138 0.00428292 Inf 0.587 1.0000
## 0.0030462 0.00613389 Inf 0.497 1.0000
## -0.3031565 0.06821146 Inf -4.444 0.0752
## -0.0118368 0.00714498 Inf -1.657 1.0000
## 0.0003070 0.00464075 Inf 0.066 1.0000
## 0.0041970 0.00401593 Inf 1.045 1.0000
## 0.0043800 0.00424385 Inf 1.032 1.0000
## -0.1705215 0.02643170 Inf -6.451 <.0001
## -0.0152386 0.00870832 Inf -1.750 1.0000
## 0.0030463 0.00421662 Inf 0.722 1.0000
## 0.0032752 0.00603121 Inf 0.543 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## -0.0418812 0.01277210 Inf -3.279 0.9316
## -0.5754763 0.03280943 Inf -17.540 <.0001
## 0.0042249 0.00401333 Inf 1.053 1.0000
## 0.0037067 0.00434827 Inf 0.852 1.0000
## 0.0043800 0.00415606 Inf 1.054 1.0000
## 0.0043800 0.00429996 Inf 1.019 1.0000
## 0.0043800 0.00406354 Inf 1.078 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## -0.0282165 0.02051111 Inf -1.376 1.0000
## 0.0043800 0.00415606 Inf 1.054 1.0000
## 0.0043800 0.00409049 Inf 1.071 1.0000
## 0.0043800 0.00399901 Inf 1.095 1.0000
## 0.0043800 0.00424385 Inf 1.032 1.0000
## 0.0043800 0.00415606 Inf 1.054 1.0000
## 0.0043800 0.00429996 Inf 1.019 1.0000
## 0.0043800 0.00406354 Inf 1.078 1.0000
## 0.0043800 0.00554910 Inf 0.789 1.0000
## -0.0473341 0.02760139 Inf -1.715 1.0000
## 0.0030571 0.00433855 Inf 0.705 1.0000
## 0.0043800 0.00409049 Inf 1.071 1.0000
## 0.0043800 0.00399901 Inf 1.095 1.0000
## 0.0043800 0.00424385 Inf 1.032 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0033044 0.00342446 Inf -0.965 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0020315 0.00314054 Inf -0.647 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## -0.0002183 0.00260525 Inf -0.084 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0427414 0.02423973 Inf -1.763 1.0000
## -0.0014880 0.00302229 Inf -0.492 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0047718 0.00376048 Inf -1.269 1.0000
## -0.0836887 0.02028527 Inf -4.126 0.2209
## -0.9133451 0.01479370 Inf -61.739 <.0001
## -0.9744347 0.01034077 Inf -94.232 <.0001
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0015780 0.00304172 Inf -0.519 1.0000
## -0.0002546 0.00265622 Inf -0.096 1.0000
## -0.0005159 0.00254346 Inf -0.203 1.0000
## -0.0003219 0.00291769 Inf -0.110 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0033044 0.00509971 Inf -0.648 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0020315 0.00491356 Inf -0.413 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0002183 0.00458993 Inf -0.048 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0030498 0.00349123 Inf 0.874 1.0000
## 0.0033044 0.00334763 Inf 0.987 1.0000
## 0.0033044 0.00363660 Inf 0.909 1.0000
## 0.0012728 0.00386994 Inf 0.329 1.0000
## 0.0033044 0.00370192 Inf 0.893 1.0000
## 0.0030860 0.00345267 Inf 0.894 1.0000
## 0.0033044 0.00509971 Inf 0.648 1.0000
## -0.0394370 0.02434047 Inf -1.620 1.0000
## 0.0018163 0.00377539 Inf 0.481 1.0000
## 0.0033044 0.00345639 Inf 0.956 1.0000
## 0.0033044 0.00334763 Inf 0.987 1.0000
## 0.0033044 0.00363660 Inf 0.909 1.0000
## -0.0014675 0.00438481 Inf -0.335 1.0000
## -0.0803843 0.02040472 Inf -3.939 0.3665
## -0.9100407 0.01498180 Inf -60.743 <.0001
## -0.9711304 0.01060016 Inf -91.615 <.0001
## 0.0033044 0.00509971 Inf 0.648 1.0000
## 0.0017264 0.00379084 Inf 0.455 1.0000
## 0.0030498 0.00349123 Inf 0.874 1.0000
## 0.0027885 0.00340579 Inf 0.819 1.0000
## 0.0029825 0.00369396 Inf 0.807 1.0000
## 0.0033044 0.00353375 Inf 0.935 1.0000
## 0.0033044 0.00370192 Inf 0.893 1.0000
## 0.0033044 0.00342446 Inf 0.965 1.0000
## 0.0033044 0.00509971 Inf 0.648 1.0000
## -0.0522328 0.02878918 Inf -1.814 1.0000
## 0.0033044 0.00353375 Inf 0.935 1.0000
## 0.0033044 0.00345639 Inf 0.956 1.0000
## 0.0033044 0.00334763 Inf 0.987 1.0000
## 0.0033044 0.00363660 Inf 0.909 1.0000
## 0.0027614 0.00361875 Inf 0.763 1.0000
## 0.0026786 0.00382384 Inf 0.700 1.0000
## 0.0012343 0.00371338 Inf 0.332 1.0000
## -0.0021401 0.00777263 Inf -0.275 1.0000
## -0.0023491 0.00787808 Inf -0.298 1.0000
## -0.0000424 0.00411003 Inf -0.010 1.0000
## -0.0130372 0.00644919 Inf -2.022 1.0000
## -0.9747429 0.00451041 Inf -216.110 <.0001
## -0.9746097 0.00533211 Inf -182.781 <.0001
## -0.0197581 0.00824730 Inf -2.396 1.0000
## -0.0159579 0.00834473 Inf -1.912 1.0000
## 0.0014382 0.00368297 Inf 0.390 1.0000
## 0.0019706 0.00573094 Inf 0.344 1.0000
## -0.3042321 0.06817659 Inf -4.462 0.0703
## -0.0129124 0.00680498 Inf -1.897 1.0000
## -0.0007686 0.00409443 Inf -0.188 1.0000
## 0.0031213 0.00336792 Inf 0.927 1.0000
## 0.0033044 0.00363660 Inf 0.909 1.0000
## -0.1715971 0.02634230 Inf -6.514 <.0001
## -0.0163142 0.00843196 Inf -1.935 1.0000
## 0.0019707 0.00360541 Inf 0.547 1.0000
## 0.0021996 0.00562084 Inf 0.391 1.0000
## 0.0033044 0.00509971 Inf 0.648 1.0000
## -0.0429568 0.01258634 Inf -3.413 0.8579
## -0.5765519 0.03273556 Inf -17.612 <.0001
## 0.0031493 0.00336480 Inf 0.936 1.0000
## 0.0026311 0.00375823 Inf 0.700 1.0000
## 0.0033044 0.00353375 Inf 0.935 1.0000
## 0.0033044 0.00370192 Inf 0.893 1.0000
## 0.0033044 0.00342446 Inf 0.965 1.0000
## 0.0033044 0.00509971 Inf 0.648 1.0000
## -0.0292921 0.02039571 Inf -1.436 1.0000
## 0.0033044 0.00353375 Inf 0.935 1.0000
## 0.0033044 0.00345639 Inf 0.956 1.0000
## 0.0033044 0.00334763 Inf 0.987 1.0000
## 0.0033044 0.00363660 Inf 0.909 1.0000
## 0.0033044 0.00353375 Inf 0.935 1.0000
## 0.0033044 0.00370192 Inf 0.893 1.0000
## 0.0033044 0.00342446 Inf 0.965 1.0000
## 0.0033044 0.00509971 Inf 0.648 1.0000
## -0.0484097 0.02751597 Inf -1.759 1.0000
## 0.0019815 0.00374727 Inf 0.529 1.0000
## 0.0033044 0.00345639 Inf 0.956 1.0000
## 0.0033044 0.00334763 Inf 0.987 1.0000
## 0.0033044 0.00363660 Inf 0.909 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## -0.0017769 0.00321338 Inf -0.553 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0000363 0.00269292 Inf 0.013 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0424868 0.02424891 Inf -1.752 1.0000
## -0.0012334 0.00309800 Inf -0.398 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## -0.0045172 0.00382122 Inf -1.182 1.0000
## -0.0834341 0.02029616 Inf -4.111 0.2307
## -0.9130905 0.01481067 Inf -61.651 <.0001
## -0.9741801 0.01036438 Inf -93.993 <.0001
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0013234 0.00311694 Inf -0.425 1.0000
## 0.0000000 0.00274226 Inf 0.000 1.0000
## -0.0002613 0.00263313 Inf -0.099 1.0000
## -0.0000673 0.00299621 Inf -0.022 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0002546 0.00265622 Inf 0.096 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0552826 0.02871213 Inf -1.925 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## -0.0002884 0.00290338 Inf -0.099 1.0000
## -0.0003712 0.00315546 Inf -0.118 1.0000
## -0.0018155 0.00302307 Inf -0.601 1.0000
## -0.0051898 0.00746960 Inf -0.695 1.0000
## -0.0053988 0.00757938 Inf -0.712 1.0000
## -0.0030921 0.00350063 Inf -0.883 1.0000
## -0.0160870 0.00608696 Inf -2.643 0.9999
## -0.9777926 0.00392786 Inf -248.938 <.0001
## -0.9776595 0.00484918 Inf -201.613 <.0001
## -0.0228079 0.00796936 Inf -2.862 0.9985
## -0.0190076 0.00806904 Inf -2.356 1.0000
## -0.0016116 0.00298531 Inf -0.540 1.0000
## -0.0010792 0.00530906 Inf -0.203 1.0000
## -0.3072818 0.06814299 Inf -4.509 0.0587
## -0.0159622 0.00646267 Inf -2.470 1.0000
## -0.0038184 0.00348328 Inf -1.096 1.0000
## 0.0000716 0.00258330 Inf 0.028 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## -0.1746469 0.02625742 Inf -6.651 <.0001
## -0.0193640 0.00815932 Inf -2.373 1.0000
## -0.0010790 0.00288815 Inf -0.374 1.0000
## -0.0008502 0.00518979 Inf -0.164 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0460066 0.01240860 Inf -3.708 0.5949
## -0.5796016 0.03266149 Inf -17.746 <.0001
## 0.0000995 0.00257917 Inf 0.039 1.0000
## -0.0004186 0.00307571 Inf -0.136 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0002546 0.00265622 Inf 0.096 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0323418 0.02028577 Inf -1.594 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0002546 0.00265622 Inf 0.096 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0514595 0.02743527 Inf -1.876 1.0000
## -0.0010682 0.00306339 Inf -0.349 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00305657 Inf -0.665 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## -0.0002183 0.00250340 Inf -0.087 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0427414 0.02422900 Inf -1.764 1.0000
## -0.0014880 0.00293495 Inf -0.507 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0020315 0.00337059 Inf -0.603 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0002183 0.00287841 Inf -0.076 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0427414 0.02427061 Inf -1.761 1.0000
## -0.0014880 0.00326070 Inf -0.456 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0020315 0.00344096 Inf 0.590 1.0000
## 0.0018132 0.00317142 Inf 0.572 1.0000
## 0.0020315 0.00491356 Inf 0.413 1.0000
## -0.0407099 0.02430400 Inf -1.675 1.0000
## 0.0005435 0.00352077 Inf 0.154 1.0000
## 0.0020315 0.00317532 Inf 0.640 1.0000
## 0.0020315 0.00305657 Inf 0.665 1.0000
## 0.0020315 0.00337059 Inf 0.603 1.0000
## -0.0027403 0.00416910 Inf -0.657 1.0000
## -0.0816572 0.02036151 Inf -4.010 0.3058
## -0.9113135 0.01491368 Inf -61.106 <.0001
## -0.9724032 0.01050665 Inf -92.551 <.0001
## 0.0020315 0.00491356 Inf 0.413 1.0000
## 0.0004535 0.00353738 Inf 0.128 1.0000
## 0.0017769 0.00321338 Inf 0.553 1.0000
## 0.0015157 0.00312051 Inf 0.486 1.0000
## 0.0017097 0.00343259 Inf 0.498 1.0000
## 0.0020315 0.00325936 Inf 0.623 1.0000
## 0.0020315 0.00344096 Inf 0.590 1.0000
## 0.0020315 0.00314054 Inf 0.647 1.0000
## 0.0020315 0.00491356 Inf 0.413 1.0000
## -0.0535057 0.02875848 Inf -1.861 1.0000
## 0.0020315 0.00325936 Inf 0.623 1.0000
## 0.0020315 0.00317532 Inf 0.640 1.0000
## 0.0020315 0.00305657 Inf 0.665 1.0000
## 0.0020315 0.00337059 Inf 0.603 1.0000
## 0.0014885 0.00335167 Inf 0.444 1.0000
## 0.0014058 0.00357217 Inf 0.394 1.0000
## -0.0000385 0.00345453 Inf -0.011 1.0000
## -0.0034129 0.00765317 Inf -0.446 1.0000
## -0.0036219 0.00776029 Inf -0.467 1.0000
## -0.0013152 0.00387839 Inf -0.339 1.0000
## -0.0143101 0.00630720 Inf -2.269 1.0000
## -0.9760157 0.00428731 Inf -227.652 <.0001
## -0.9758826 0.00514472 Inf -189.686 <.0001
## -0.0210310 0.00813759 Inf -2.584 1.0000
## -0.0172307 0.00823588 Inf -2.092 1.0000
## 0.0001654 0.00342170 Inf 0.048 1.0000
## 0.0006978 0.00556645 Inf 0.125 1.0000
## -0.3055049 0.06816319 Inf -4.482 0.0652
## -0.0141852 0.00667055 Inf -2.127 1.0000
## -0.0020414 0.00386221 Inf -0.529 1.0000
## 0.0018485 0.00307891 Inf 0.600 1.0000
## 0.0020315 0.00337059 Inf 0.603 1.0000
## -0.1728700 0.02630848 Inf -6.571 <.0001
## -0.0175870 0.00832429 Inf -2.113 1.0000
## 0.0006979 0.00333776 Inf 0.209 1.0000
## 0.0009267 0.00545293 Inf 0.170 1.0000
## 0.0020315 0.00491356 Inf 0.413 1.0000
## -0.0442297 0.01251577 Inf -3.534 0.7631
## -0.5778247 0.03270601 Inf -17.667 <.0001
## 0.0018765 0.00307548 Inf 0.610 1.0000
## 0.0013583 0.00350189 Inf 0.388 1.0000
## 0.0020315 0.00325936 Inf 0.623 1.0000
## 0.0020315 0.00344096 Inf 0.590 1.0000
## 0.0020315 0.00314054 Inf 0.647 1.0000
## 0.0020315 0.00491356 Inf 0.413 1.0000
## -0.0305649 0.02035194 Inf -1.502 1.0000
## 0.0020315 0.00325936 Inf 0.623 1.0000
## 0.0020315 0.00317532 Inf 0.640 1.0000
## 0.0020315 0.00305657 Inf 0.665 1.0000
## 0.0020315 0.00337059 Inf 0.603 1.0000
## 0.0020315 0.00325936 Inf 0.623 1.0000
## 0.0020315 0.00344096 Inf 0.590 1.0000
## 0.0020315 0.00314054 Inf 0.647 1.0000
## 0.0020315 0.00491356 Inf 0.413 1.0000
## -0.0496826 0.02748382 Inf -1.808 1.0000
## 0.0007087 0.00349051 Inf 0.203 1.0000
## 0.0020315 0.00317532 Inf 0.640 1.0000
## 0.0020315 0.00305657 Inf 0.665 1.0000
## 0.0020315 0.00337059 Inf 0.603 1.0000
## -0.0002183 0.00296051 Inf -0.074 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0427414 0.02428048 Inf -1.760 1.0000
## -0.0014880 0.00333339 Inf -0.446 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0047718 0.00401478 Inf -1.189 1.0000
## -0.0836887 0.02033394 Inf -4.116 0.2274
## -0.9133451 0.01486037 Inf -61.462 <.0001
## -0.9744347 0.01043594 Inf -93.373 <.0001
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0015780 0.00335102 Inf -0.471 1.0000
## -0.0002546 0.00300546 Inf -0.085 1.0000
## -0.0005159 0.00290627 Inf -0.178 1.0000
## -0.0003219 0.00323885 Inf -0.099 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0555372 0.02873883 Inf -1.932 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0005430 0.00315320 Inf -0.172 1.0000
## -0.0006258 0.00338675 Inf -0.185 1.0000
## -0.0020700 0.00326395 Inf -0.634 1.0000
## -0.0054444 0.00757048 Inf -0.719 1.0000
## -0.0056534 0.00767883 Inf -0.736 1.0000
## -0.0033467 0.00371079 Inf -0.902 1.0000
## -0.0163416 0.00621089 Inf -2.631 1.0000
## -0.9780472 0.00411327 Inf -237.778 <.0001
## -0.9779141 0.00500054 Inf -195.562 <.0001
## -0.0230625 0.00806460 Inf -2.860 0.9986
## -0.0192622 0.00816302 Inf -2.360 1.0000
## -0.0018662 0.00322898 Inf -0.578 1.0000
## -0.0013337 0.00544976 Inf -0.245 1.0000
## -0.3075364 0.06815414 Inf -4.512 0.0580
## -0.0162167 0.00657952 Inf -2.465 1.0000
## -0.0040729 0.00369450 Inf -1.102 1.0000
## -0.0001830 0.00286114 Inf -0.064 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1749015 0.02628655 Inf -6.654 <.0001
## -0.0196185 0.00825228 Inf -2.377 1.0000
## -0.0013336 0.00313930 Inf -0.425 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0462612 0.01247021 Inf -3.710 0.5928
## -0.5798562 0.03268440 Inf -17.741 <.0001
## -0.0001551 0.00285741 Inf -0.054 1.0000
## -0.0006732 0.00331258 Inf -0.203 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0002183 0.00458993 Inf 0.048 1.0000
## -0.0425231 0.02424344 Inf -1.754 1.0000
## -0.0012697 0.00305444 Inf -0.416 1.0000
## 0.0002183 0.00264708 Inf 0.082 1.0000
## 0.0002183 0.00250340 Inf 0.087 1.0000
## 0.0002183 0.00287841 Inf 0.076 1.0000
## -0.0045535 0.00378605 Inf -1.203 1.0000
## -0.0834704 0.02028964 Inf -4.114 0.2286
## -0.9131267 0.01480143 Inf -61.692 <.0001
## -0.9742164 0.01035126 Inf -94.116 <.0001
## 0.0002183 0.00458993 Inf 0.048 1.0000
## -0.0013597 0.00307366 Inf -0.442 1.0000
## -0.0000363 0.00269292 Inf -0.013 1.0000
## -0.0002975 0.00258172 Inf -0.115 1.0000
## -0.0001035 0.00295113 Inf -0.035 1.0000
## 0.0002183 0.00274733 Inf 0.079 1.0000
## 0.0002183 0.00296051 Inf 0.074 1.0000
## 0.0002183 0.00260525 Inf 0.084 1.0000
## 0.0002183 0.00458993 Inf 0.048 1.0000
## -0.0553188 0.02870751 Inf -1.927 1.0000
## 0.0002183 0.00274733 Inf 0.079 1.0000
## 0.0002183 0.00264708 Inf 0.082 1.0000
## 0.0002183 0.00250340 Inf 0.087 1.0000
## 0.0002183 0.00287841 Inf 0.076 1.0000
## -0.0003246 0.00285684 Inf -0.114 1.0000
## -0.0004074 0.00311269 Inf -0.131 1.0000
## -0.0018517 0.00297843 Inf -0.622 1.0000
## -0.0052261 0.00745167 Inf -0.701 1.0000
## -0.0054351 0.00756172 Inf -0.719 1.0000
## -0.0031284 0.00346218 Inf -0.904 1.0000
## -0.0161233 0.00606503 Inf -2.658 0.9999
## -0.9778289 0.00389317 Inf -251.165 <.0001
## -0.9776958 0.00482113 Inf -202.794 <.0001
## -0.0228441 0.00795265 Inf -2.873 0.9983
## -0.0190439 0.00805252 Inf -2.365 1.0000
## -0.0016478 0.00294009 Inf -0.560 1.0000
## -0.0011154 0.00528376 Inf -0.211 1.0000
## -0.3073181 0.06814103 Inf -4.510 0.0585
## -0.0159984 0.00644201 Inf -2.483 1.0000
## -0.0038546 0.00344464 Inf -1.119 1.0000
## 0.0000353 0.00253086 Inf 0.014 1.0000
## 0.0002183 0.00287841 Inf 0.076 1.0000
## -0.1746832 0.02625236 Inf -6.654 <.0001
## -0.0194002 0.00814298 Inf -2.382 1.0000
## -0.0011153 0.00284138 Inf -0.393 1.0000
## -0.0008865 0.00516390 Inf -0.172 1.0000
## 0.0002183 0.00458993 Inf 0.048 1.0000
## -0.0460429 0.01239790 Inf -3.714 0.5887
## -0.5796379 0.03265735 Inf -17.749 <.0001
## 0.0000633 0.00252665 Inf 0.025 1.0000
## -0.0004549 0.00303181 Inf -0.150 1.0000
## 0.0002183 0.00274733 Inf 0.079 1.0000
## 0.0002183 0.00296051 Inf 0.074 1.0000
## 0.0002183 0.00260525 Inf 0.084 1.0000
## 0.0002183 0.00458993 Inf 0.048 1.0000
## -0.0323781 0.02027922 Inf -1.597 1.0000
## 0.0002183 0.00274733 Inf 0.079 1.0000
## 0.0002183 0.00264708 Inf 0.082 1.0000
## 0.0002183 0.00250340 Inf 0.087 1.0000
## 0.0002183 0.00287841 Inf 0.076 1.0000
## 0.0002183 0.00274733 Inf 0.079 1.0000
## 0.0002183 0.00296051 Inf 0.074 1.0000
## 0.0002183 0.00260525 Inf 0.084 1.0000
## 0.0002183 0.00458993 Inf 0.048 1.0000
## -0.0514958 0.02743043 Inf -1.877 1.0000
## -0.0011045 0.00301933 Inf -0.366 1.0000
## 0.0002183 0.00264708 Inf 0.082 1.0000
## 0.0002183 0.00250340 Inf 0.087 1.0000
## 0.0002183 0.00287841 Inf 0.076 1.0000
## -0.0427414 0.02453252 Inf -1.742 1.0000
## -0.0014880 0.00483884 Inf -0.308 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0047718 0.00533116 Inf -0.895 1.0000
## -0.0836887 0.02063425 Inf -4.056 0.2701
## -0.9133451 0.01526871 Inf -59.818 <.0001
## -0.9744347 0.01100962 Inf -88.508 <.0001
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0412534 0.02428982 Inf 1.698 1.0000
## 0.0427414 0.02424426 Inf 1.763 1.0000
## 0.0427414 0.02422900 Inf 1.764 1.0000
## 0.0427414 0.02427061 Inf 1.761 1.0000
## 0.0379696 0.02438799 Inf 1.557 1.0000
## -0.0409473 0.03147406 Inf -1.301 1.0000
## -0.8706037 0.02833636 Inf -30.724 <.0001
## -0.9316933 0.02626580 Inf -35.472 <.0001
## 0.0427414 0.02453252 Inf 1.742 1.0000
## 0.0411634 0.02429211 Inf 1.695 1.0000
## 0.0424868 0.02424891 Inf 1.752 1.0000
## 0.0422255 0.02423640 Inf 1.742 1.0000
## 0.0424195 0.02427883 Inf 1.747 1.0000
## 0.0427414 0.02425541 Inf 1.762 1.0000
## 0.0427414 0.02428048 Inf 1.760 1.0000
## 0.0427414 0.02423973 Inf 1.763 1.0000
## 0.0427414 0.02453252 Inf 1.742 1.0000
## -0.0127958 0.03745874 Inf -0.342 1.0000
## 0.0427414 0.02425541 Inf 1.762 1.0000
## 0.0427414 0.02424426 Inf 1.763 1.0000
## 0.0427414 0.02422900 Inf 1.764 1.0000
## 0.0427414 0.02427061 Inf 1.761 1.0000
## 0.0421984 0.02426721 Inf 1.739 1.0000
## 0.0421156 0.02429853 Inf 1.733 1.0000
## 0.0406713 0.02427951 Inf 1.675 1.0000
## 0.0372969 0.02521754 Inf 1.479 1.0000
## 0.0370880 0.02525001 Inf 1.469 1.0000
## 0.0393947 0.02434176 Inf 1.618 1.0000
## 0.0263998 0.02483180 Inf 1.063 1.0000
## -0.9353058 0.02444794 Inf -38.257 <.0001
## -0.9351727 0.02461292 Inf -37.995 <.0001
## 0.0196789 0.02535418 Inf 0.776 1.0000
## 0.0234791 0.02538823 Inf 0.925 1.0000
## 0.0408752 0.02427514 Inf 1.684 1.0000
## 0.0414076 0.02466972 Inf 1.678 1.0000
## -0.2647950 0.07227258 Inf -3.664 0.6394
## 0.0265246 0.02492666 Inf 1.064 1.0000
## 0.0386684 0.02433827 Inf 1.589 1.0000
## 0.0425584 0.02423156 Inf 1.756 1.0000
## 0.0427414 0.02427061 Inf 1.761 1.0000
## -0.1321601 0.03561556 Inf -3.711 0.5918
## 0.0231228 0.02541682 Inf 0.910 1.0000
## 0.0414077 0.02426418 Inf 1.707 1.0000
## 0.0416366 0.02464467 Inf 1.689 1.0000
## 0.0427414 0.02453252 Inf 1.742 1.0000
## -0.0035198 0.02707084 Inf -0.130 1.0000
## -0.5371149 0.04060206 Inf -13.229 <.0001
## 0.0425863 0.02423116 Inf 1.758 1.0000
## 0.0420681 0.02428823 Inf 1.732 1.0000
## 0.0427414 0.02425541 Inf 1.762 1.0000
## 0.0427414 0.02428048 Inf 1.760 1.0000
## 0.0427414 0.02423973 Inf 1.763 1.0000
## 0.0427414 0.02453252 Inf 1.742 1.0000
## 0.0101450 0.03147360 Inf 0.322 1.0000
## 0.0427414 0.02425541 Inf 1.762 1.0000
## 0.0427414 0.02424426 Inf 1.763 1.0000
## 0.0427414 0.02422900 Inf 1.764 1.0000
## 0.0427414 0.02427061 Inf 1.761 1.0000
## 0.0427414 0.02425541 Inf 1.762 1.0000
## 0.0427414 0.02428048 Inf 1.760 1.0000
## 0.0427414 0.02423973 Inf 1.763 1.0000
## 0.0427414 0.02453252 Inf 1.742 1.0000
## -0.0089727 0.03648966 Inf -0.246 1.0000
## 0.0414186 0.02428568 Inf 1.705 1.0000
## 0.0427414 0.02424426 Inf 1.763 1.0000
## 0.0427414 0.02422900 Inf 1.764 1.0000
## 0.0427414 0.02427061 Inf 1.761 1.0000
## 0.0014880 0.00305842 Inf 0.487 1.0000
## 0.0014880 0.00293495 Inf 0.507 1.0000
## 0.0014880 0.00326070 Inf 0.456 1.0000
## -0.0032838 0.00408179 Inf -0.804 1.0000
## -0.0822007 0.02034471 Inf -4.040 0.2819
## -0.9118571 0.01488667 Inf -61.253 <.0001
## -0.9729467 0.01046960 Inf -92.931 <.0001
## 0.0014880 0.00483884 Inf 0.308 1.0000
## -0.0000900 0.00343326 Inf -0.026 1.0000
## 0.0012334 0.00309800 Inf 0.398 1.0000
## 0.0009721 0.00300164 Inf 0.324 1.0000
## 0.0011661 0.00332485 Inf 0.351 1.0000
## 0.0014880 0.00314559 Inf 0.473 1.0000
## 0.0014880 0.00333339 Inf 0.446 1.0000
## 0.0014880 0.00302229 Inf 0.492 1.0000
## 0.0014880 0.00483884 Inf 0.308 1.0000
## -0.0540492 0.02874656 Inf -1.880 1.0000
## 0.0014880 0.00314559 Inf 0.473 1.0000
## 0.0014880 0.00305842 Inf 0.487 1.0000
## 0.0014880 0.00293495 Inf 0.507 1.0000
## 0.0014880 0.00326070 Inf 0.456 1.0000
## 0.0009450 0.00324129 Inf 0.292 1.0000
## 0.0008622 0.00346885 Inf 0.249 1.0000
## -0.0005820 0.00334796 Inf -0.174 1.0000
## -0.0039564 0.00760603 Inf -0.520 1.0000
## -0.0041654 0.00771382 Inf -0.540 1.0000
## -0.0018587 0.00378407 Inf -0.491 1.0000
## -0.0148536 0.00625103 Inf -2.376 1.0000
## -0.9765592 0.00419628 Inf -232.720 <.0001
## -0.9764261 0.00506909 Inf -192.623 <.0001
## -0.0215745 0.00809450 Inf -2.665 0.9999
## -0.0177742 0.00819311 Inf -2.169 1.0000
## -0.0003782 0.00331402 Inf -0.114 1.0000
## 0.0001543 0.00550082 Inf 0.028 1.0000
## -0.3060484 0.06815796 Inf -4.490 0.0632
## -0.0147287 0.00661745 Inf -2.226 1.0000
## -0.0025849 0.00376764 Inf -0.686 1.0000
## 0.0013050 0.00295827 Inf 0.441 1.0000
## 0.0014880 0.00326070 Inf 0.456 1.0000
## -0.1734135 0.02629533 Inf -6.595 <.0001
## -0.0181305 0.00828199 Inf -2.189 1.0000
## 0.0001544 0.00322713 Inf 0.048 1.0000
## 0.0003832 0.00538589 Inf 0.071 1.0000
## 0.0014880 0.00483884 Inf 0.308 1.0000
## -0.0447732 0.01248826 Inf -3.585 0.7163
## -0.5783682 0.03269440 Inf -17.690 <.0001
## 0.0013329 0.00295468 Inf 0.451 1.0000
## 0.0008148 0.00339643 Inf 0.240 1.0000
## 0.0014880 0.00314559 Inf 0.473 1.0000
## 0.0014880 0.00333339 Inf 0.446 1.0000
## 0.0014880 0.00302229 Inf 0.492 1.0000
## 0.0014880 0.00483884 Inf 0.308 1.0000
## -0.0311084 0.02033490 Inf -1.530 1.0000
## 0.0014880 0.00314559 Inf 0.473 1.0000
## 0.0014880 0.00305842 Inf 0.487 1.0000
## 0.0014880 0.00293495 Inf 0.507 1.0000
## 0.0014880 0.00326070 Inf 0.456 1.0000
## 0.0014880 0.00314559 Inf 0.473 1.0000
## 0.0014880 0.00333339 Inf 0.446 1.0000
## 0.0014880 0.00302229 Inf 0.492 1.0000
## 0.0014880 0.00483884 Inf 0.308 1.0000
## -0.0502261 0.02747133 Inf -1.828 1.0000
## 0.0001652 0.00338487 Inf 0.049 1.0000
## 0.0014880 0.00305842 Inf 0.487 1.0000
## 0.0014880 0.00293495 Inf 0.507 1.0000
## 0.0014880 0.00326070 Inf 0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0047718 0.00378957 Inf -1.259 1.0000
## -0.0836887 0.02029068 Inf -4.124 0.2216
## -0.9133451 0.01480112 Inf -61.708 <.0001
## -0.9744347 0.01035139 Inf -94.136 <.0001
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0015780 0.00307763 Inf -0.513 1.0000
## -0.0002546 0.00269726 Inf -0.094 1.0000
## -0.0005159 0.00258629 Inf -0.199 1.0000
## -0.0003219 0.00295510 Inf -0.109 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0555372 0.02870823 Inf -1.935 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00369064 Inf -1.293 1.0000
## -0.0836887 0.02027244 Inf -4.128 0.2191
## -0.9133451 0.01477610 Inf -61.812 <.0001
## -0.9744347 0.01031558 Inf -94.462 <.0001
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0015780 0.00295495 Inf -0.534 1.0000
## -0.0002546 0.00255640 Inf -0.100 1.0000
## -0.0005159 0.00243903 Inf -0.212 1.0000
## -0.0003219 0.00282711 Inf -0.114 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0555372 0.02869534 Inf -1.935 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0047718 0.00395463 Inf -1.207 1.0000
## -0.0836887 0.02032215 Inf -4.118 0.2258
## -0.9133451 0.01484424 Inf -61.529 <.0001
## -0.9744347 0.01041295 Inf -93.579 <.0001
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0015780 0.00327872 Inf -0.481 1.0000
## -0.0002546 0.00292463 Inf -0.087 1.0000
## -0.0005159 0.00282260 Inf -0.183 1.0000
## -0.0003219 0.00316399 Inf -0.102 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0555372 0.02873048 Inf -1.933 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0789169 0.02046106 Inf -3.857 0.4441
## -0.9085733 0.01506844 Inf -60.296 <.0001
## -0.9696629 0.01071906 Inf -90.462 <.0001
## 0.0047718 0.00533116 Inf 0.895 1.0000
## 0.0031938 0.00409603 Inf 0.780 1.0000
## 0.0045172 0.00382122 Inf 1.182 1.0000
## 0.0042559 0.00374315 Inf 1.137 1.0000
## 0.0044500 0.00400725 Inf 1.110 1.0000
## 0.0047718 0.00386027 Inf 1.236 1.0000
## 0.0047718 0.00401478 Inf 1.189 1.0000
## 0.0047718 0.00376048 Inf 1.269 1.0000
## 0.0047718 0.00533116 Inf 0.895 1.0000
## -0.0507654 0.02882923 Inf -1.761 1.0000
## 0.0047718 0.00386027 Inf 1.236 1.0000
## 0.0047718 0.00378957 Inf 1.259 1.0000
## 0.0047718 0.00369064 Inf 1.293 1.0000
## 0.0047718 0.00395463 Inf 1.207 1.0000
## 0.0042288 0.00393790 Inf 1.074 1.0000
## 0.0041460 0.00412711 Inf 1.005 1.0000
## 0.0027018 0.00402418 Inf 0.671 1.0000
## -0.0006726 0.00792494 Inf -0.085 1.0000
## -0.0008816 0.00802834 Inf -0.110 1.0000
## 0.0014251 0.00439223 Inf 0.324 1.0000
## -0.0115698 0.00662936 Inf -1.745 1.0000
## -0.9732754 0.00478188 Inf -203.534 <.0001
## -0.9731423 0.00556367 Inf -174.910 <.0001
## -0.0182907 0.00838806 Inf -2.181 1.0000
## -0.0144904 0.00848434 Inf -1.708 1.0000
## 0.0029056 0.00399625 Inf 0.727 1.0000
## 0.0034381 0.00593732 Inf 0.579 1.0000
## -0.3027646 0.06819400 Inf -4.440 0.0765
## -0.0114449 0.00697600 Inf -1.641 1.0000
## 0.0006989 0.00437729 Inf 0.160 1.0000
## 0.0045888 0.00370895 Inf 1.237 1.0000
## 0.0047718 0.00395463 Inf 1.207 1.0000
## -0.1701297 0.02638635 Inf -6.448 <.0001
## -0.0148467 0.00857009 Inf -1.732 1.0000
## 0.0034382 0.00392519 Inf 0.876 1.0000
## 0.0036670 0.00583120 Inf 0.629 1.0000
## 0.0047718 0.00533116 Inf 0.895 1.0000
## -0.0414894 0.01267789 Inf -3.273 0.9343
## -0.5750844 0.03277358 Inf -17.547 <.0001
## 0.0046167 0.00370613 Inf 1.246 1.0000
## 0.0040986 0.00406638 Inf 1.008 1.0000
## 0.0047718 0.00386027 Inf 1.236 1.0000
## 0.0047718 0.00401478 Inf 1.189 1.0000
## 0.0047718 0.00376048 Inf 1.269 1.0000
## 0.0047718 0.00533116 Inf 0.895 1.0000
## -0.0278246 0.02045266 Inf -1.360 1.0000
## 0.0047718 0.00386027 Inf 1.236 1.0000
## 0.0047718 0.00378957 Inf 1.259 1.0000
## 0.0047718 0.00369064 Inf 1.293 1.0000
## 0.0047718 0.00395463 Inf 1.207 1.0000
## 0.0047718 0.00386027 Inf 1.236 1.0000
## 0.0047718 0.00401478 Inf 1.189 1.0000
## 0.0047718 0.00376048 Inf 1.269 1.0000
## 0.0047718 0.00533116 Inf 0.895 1.0000
## -0.0469423 0.02755791 Inf -1.703 1.0000
## 0.0034490 0.00405588 Inf 0.850 1.0000
## 0.0047718 0.00378957 Inf 1.259 1.0000
## 0.0047718 0.00369064 Inf 1.293 1.0000
## 0.0047718 0.00395463 Inf 1.207 1.0000
## -0.8296564 0.02504601 Inf -33.125 <.0001
## -0.8907460 0.02267357 Inf -39.286 <.0001
## 0.0836887 0.02063425 Inf 4.056 0.2701
## 0.0821107 0.02034743 Inf 4.035 0.2858
## 0.0834341 0.02029616 Inf 4.111 0.2307
## 0.0831728 0.02028115 Inf 4.101 0.2375
## 0.0833668 0.02033189 Inf 4.100 0.2379
## 0.0836887 0.02030400 Inf 4.122 0.2234
## 0.0836887 0.02033394 Inf 4.116 0.2274
## 0.0836887 0.02028527 Inf 4.126 0.2209
## 0.0836887 0.02063425 Inf 4.056 0.2701
## 0.0281515 0.03502634 Inf 0.804 1.0000
## 0.0836887 0.02030400 Inf 4.122 0.2234
## 0.0836887 0.02029068 Inf 4.124 0.2216
## 0.0836887 0.02027244 Inf 4.128 0.2191
## 0.0836887 0.02032215 Inf 4.118 0.2258
## 0.0831457 0.02031795 Inf 4.092 0.2436
## 0.0830629 0.02035533 Inf 4.081 0.2518
## 0.0816186 0.02033227 Inf 4.014 0.3026
## 0.0782442 0.02144293 Inf 3.649 0.6543
## 0.0780353 0.02148107 Inf 3.633 0.6704
## 0.0803420 0.02040625 Inf 3.937 0.3687
## 0.0673471 0.02098608 Inf 3.209 0.9569
## -0.8943585 0.02053954 Inf -43.543 <.0001
## -0.8942254 0.02073567 Inf -43.125 <.0001
## 0.0606262 0.02160088 Inf 2.807 0.9993
## 0.0644264 0.02164125 Inf 2.977 0.9943
## 0.0818225 0.02032709 Inf 4.025 0.2938
## 0.0823549 0.02079685 Inf 3.960 0.3484
## -0.2238477 0.07104339 Inf -3.151 0.9721
## 0.0674719 0.02109825 Inf 3.198 0.9602
## 0.0796157 0.02040192 Inf 3.902 0.4006
## 0.0835057 0.02027545 Inf 4.119 0.2255
## 0.0836887 0.02032215 Inf 4.118 0.2258
## -0.0912128 0.03304829 Inf -2.760 0.9996
## 0.0640701 0.02167474 Inf 2.956 0.9955
## 0.0823550 0.02031414 Inf 4.054 0.2715
## 0.0825839 0.02076718 Inf 3.977 0.3339
## 0.0836887 0.02063425 Inf 4.056 0.2701
## 0.0374275 0.02359088 Inf 1.587 1.0000
## -0.4961676 0.03837483 Inf -12.930 <.0001
## 0.0835336 0.02027499 Inf 4.120 0.2245
## 0.0830155 0.02034302 Inf 4.081 0.2517
## 0.0836887 0.02030400 Inf 4.122 0.2234
## 0.0836887 0.02033394 Inf 4.116 0.2274
## 0.0836887 0.02028527 Inf 4.126 0.2209
## 0.0836887 0.02063425 Inf 4.056 0.2701
## 0.0510923 0.02853624 Inf 1.790 1.0000
## 0.0836887 0.02030400 Inf 4.122 0.2234
## 0.0836887 0.02029068 Inf 4.124 0.2216
## 0.0836887 0.02027244 Inf 4.128 0.2191
## 0.0836887 0.02032215 Inf 4.118 0.2258
## 0.0836887 0.02030400 Inf 4.122 0.2234
## 0.0836887 0.02033394 Inf 4.116 0.2274
## 0.0836887 0.02028527 Inf 4.126 0.2209
## 0.0836887 0.02063425 Inf 4.056 0.2701
## 0.0319746 0.03398804 Inf 0.941 1.0000
## 0.0823659 0.02033981 Inf 4.049 0.2749
## 0.0836887 0.02029068 Inf 4.124 0.2216
## 0.0836887 0.02027244 Inf 4.128 0.2191
## 0.0836887 0.02032215 Inf 4.118 0.2258
## -0.0610896 0.01775901 Inf -3.440 0.8389
## 0.9133451 0.01526871 Inf 59.818 <.0001
## 0.9117671 0.01489105 Inf 61.229 <.0001
## 0.9130905 0.01481067 Inf 61.651 <.0001
## 0.9128292 0.01479216 Inf 61.710 <.0001
## 0.9130232 0.01486012 Inf 61.441 <.0001
## 0.9133451 0.01481938 Inf 61.632 <.0001
## 0.9133451 0.01486037 Inf 61.462 <.0001
## 0.9133451 0.01479370 Inf 61.739 <.0001
## 0.9133451 0.01526871 Inf 59.818 <.0001
## 0.8578079 0.03224253 Inf 26.605 <.0001
## 0.9133451 0.01481938 Inf 61.632 <.0001
## 0.9133451 0.01480112 Inf 61.708 <.0001
## 0.9133451 0.01477610 Inf 61.812 <.0001
## 0.9133451 0.01484424 Inf 61.529 <.0001
## 0.9128021 0.01484278 Inf 61.498 <.0001
## 0.9127193 0.01489455 Inf 61.279 <.0001
## 0.9112750 0.01487401 Inf 61.266 <.0001
## 0.9079006 0.01638094 Inf 55.424 <.0001
## 0.9076916 0.01643207 Inf 55.239 <.0001
## 0.9099983 0.01498418 Inf 60.731 <.0001
## 0.8970035 0.01583319 Inf 56.653 <.0001
## -0.0647021 0.01495921 Inf -4.325 0.1157
## -0.0645690 0.01522659 Inf -4.241 0.1541
## 0.8902826 0.01666210 Inf 53.432 <.0001
## 0.8940828 0.01670242 Inf 53.530 <.0001
## 0.9114789 0.01486543 Inf 61.315 <.0001
## 0.9120113 0.01549772 Inf 58.848 <.0001
## 0.6058086 0.06968885 Inf 8.693 <.0001
## 0.8971283 0.01598108 Inf 56.137 <.0001
## 0.9092721 0.01498332 Inf 60.686 <.0001
## 0.9131621 0.01478170 Inf 61.777 <.0001
## 0.9133451 0.01484424 Inf 61.529 <.0001
## 0.7384436 0.03006937 Inf 24.558 <.0001
## 0.8937265 0.01674699 Inf 53.366 <.0001
## 0.9120114 0.01484368 Inf 61.441 <.0001
## 0.9122403 0.01545621 Inf 59.021 <.0001
## 0.9133451 0.01526871 Inf 59.818 <.0001
## 0.8670839 0.01920935 Inf 45.139 <.0001
## 0.3334888 0.03572305 Inf 9.335 <.0001
## 0.9131900 0.01478084 Inf 61.782 <.0001
## 0.9126718 0.01487809 Inf 61.343 <.0001
## 0.9133451 0.01481938 Inf 61.632 <.0001
## 0.9133451 0.01486037 Inf 61.462 <.0001
## 0.9133451 0.01479370 Inf 61.739 <.0001
## 0.9133451 0.01526871 Inf 59.818 <.0001
## 0.8807486 0.02502223 Inf 35.199 <.0001
## 0.9133451 0.01481938 Inf 61.632 <.0001
## 0.9133451 0.01480112 Inf 61.708 <.0001
## 0.9133451 0.01477610 Inf 61.812 <.0001
## 0.9133451 0.01484424 Inf 61.529 <.0001
## 0.9133451 0.01481938 Inf 61.632 <.0001
## 0.9133451 0.01486037 Inf 61.462 <.0001
## 0.9133451 0.01479370 Inf 61.739 <.0001
## 0.9133451 0.01526871 Inf 59.818 <.0001
## 0.8616310 0.03110993 Inf 27.696 <.0001
## 0.9120222 0.01487871 Inf 61.297 <.0001
## 0.9133451 0.01480112 Inf 61.708 <.0001
## 0.9133451 0.01477610 Inf 61.812 <.0001
## 0.9133451 0.01484424 Inf 61.529 <.0001
## 0.9744347 0.01100962 Inf 88.508 <.0001
## 0.9728567 0.01047561 Inf 92.869 <.0001
## 0.9741801 0.01036438 Inf 93.993 <.0001
## 0.9739188 0.01033723 Inf 94.215 <.0001
## 0.9741128 0.01043475 Inf 93.353 <.0001
## 0.9744347 0.01037748 Inf 93.899 <.0001
## 0.9744347 0.01043594 Inf 93.373 <.0001
## 0.9744347 0.01034077 Inf 94.232 <.0001
## 0.9744347 0.01100962 Inf 88.508 <.0001
## 0.9188975 0.03043734 Inf 30.190 <.0001
## 0.9744347 0.01037748 Inf 93.899 <.0001
## 0.9744347 0.01035139 Inf 94.136 <.0001
## 0.9744347 0.01031558 Inf 94.462 <.0001
## 0.9744347 0.01041295 Inf 93.579 <.0001
## 0.9738917 0.01040947 Inf 93.558 <.0001
## 0.9738089 0.01048295 Inf 92.895 <.0001
## 0.9723647 0.01045018 Inf 93.048 <.0001
## 0.9689903 0.01249580 Inf 77.545 <.0001
## 0.9687813 0.01256239 Inf 77.118 <.0001
## 0.9710880 0.01060343 Inf 91.582 <.0001
## 0.9580931 0.01175172 Inf 81.528 <.0001
## -0.0036125 0.01063493 Inf -0.340 1.0000
## -0.0034794 0.01100811 Inf -0.316 1.0000
## 0.9513722 0.01284004 Inf 74.094 <.0001
## 0.9551725 0.01289587 Inf 74.068 <.0001
## 0.9725685 0.01043844 Inf 93.172 <.0001
## 0.9731010 0.01132197 Inf 85.948 <.0001
## 0.6668983 0.06887782 Inf 9.682 <.0001
## 0.9582180 0.01195037 Inf 80.183 <.0001
## 0.9703618 0.01060059 Inf 91.538 <.0001
## 0.9742517 0.01032313 Inf 94.376 <.0001
## 0.9744347 0.01041295 Inf 93.579 <.0001
## 0.7995332 0.02812812 Inf 28.425 <.0001
## 0.9548162 0.01295318 Inf 73.713 <.0001
## 0.9731011 0.01040876 Inf 93.489 <.0001
## 0.9733299 0.01126560 Inf 86.398 <.0001
## 0.9744347 0.01100962 Inf 88.508 <.0001
## 0.9281735 0.01599722 Inf 58.021 <.0001
## 0.3945785 0.03413347 Inf 11.560 <.0001
## 0.9742796 0.01032196 Inf 94.389 <.0001
## 0.9737615 0.01045943 Inf 93.099 <.0001
## 0.9744347 0.01037748 Inf 93.899 <.0001
## 0.9744347 0.01043594 Inf 93.373 <.0001
## 0.9744347 0.01034077 Inf 94.232 <.0001
## 0.9744347 0.01100962 Inf 88.508 <.0001
## 0.9418383 0.02265343 Inf 41.576 <.0001
## 0.9744347 0.01037748 Inf 93.899 <.0001
## 0.9744347 0.01035139 Inf 94.136 <.0001
## 0.9744347 0.01031558 Inf 94.462 <.0001
## 0.9744347 0.01041295 Inf 93.579 <.0001
## 0.9744347 0.01037748 Inf 93.899 <.0001
## 0.9744347 0.01043594 Inf 93.373 <.0001
## 0.9744347 0.01034077 Inf 94.232 <.0001
## 0.9744347 0.01100962 Inf 88.508 <.0001
## 0.9227206 0.02923527 Inf 31.562 <.0001
## 0.9731119 0.01045869 Inf 93.043 <.0001
## 0.9744347 0.01035139 Inf 94.136 <.0001
## 0.9744347 0.01031558 Inf 94.462 <.0001
## 0.9744347 0.01041295 Inf 93.579 <.0001
## -0.0015780 0.00485100 Inf -0.325 1.0000
## -0.0002546 0.00461905 Inf -0.055 1.0000
## -0.0005159 0.00455514 Inf -0.113 1.0000
## -0.0003219 0.00477420 Inf -0.067 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0013234 0.00311694 Inf 0.425 1.0000
## 0.0010621 0.00302118 Inf 0.352 1.0000
## 0.0012561 0.00334250 Inf 0.376 1.0000
## 0.0015780 0.00316426 Inf 0.499 1.0000
## 0.0015780 0.00335102 Inf 0.471 1.0000
## 0.0015780 0.00304172 Inf 0.519 1.0000
## 0.0015780 0.00485100 Inf 0.325 1.0000
## -0.0539592 0.02874848 Inf -1.877 1.0000
## 0.0015780 0.00316426 Inf 0.499 1.0000
## 0.0015780 0.00307763 Inf 0.513 1.0000
## 0.0015780 0.00295495 Inf 0.534 1.0000
## 0.0015780 0.00327872 Inf 0.481 1.0000
## 0.0010350 0.00325939 Inf 0.318 1.0000
## 0.0009522 0.00348576 Inf 0.273 1.0000
## -0.0004920 0.00336542 Inf -0.146 1.0000
## -0.0038664 0.00761367 Inf -0.508 1.0000
## -0.0040754 0.00772135 Inf -0.528 1.0000
## -0.0017687 0.00379947 Inf -0.466 1.0000
## -0.0147636 0.00626014 Inf -2.358 1.0000
## -0.9764692 0.00421116 Inf -231.876 <.0001
## -0.9763361 0.00508142 Inf -192.138 <.0001
## -0.0214845 0.00810148 Inf -2.652 0.9999
## -0.0176842 0.00820003 Inf -2.157 1.0000
## -0.0002882 0.00333167 Inf -0.086 1.0000
## 0.0002443 0.00551149 Inf 0.044 1.0000
## -0.3059584 0.06815881 Inf -4.489 0.0635
## -0.0146388 0.00662606 Inf -2.209 1.0000
## -0.0024949 0.00378309 Inf -0.660 1.0000
## 0.0013950 0.00297811 Inf 0.468 1.0000
## 0.0015780 0.00327872 Inf 0.481 1.0000
## -0.1733235 0.02629745 Inf -6.591 <.0001
## -0.0180405 0.00828884 Inf -2.176 1.0000
## 0.0002444 0.00324527 Inf 0.075 1.0000
## 0.0004732 0.00539679 Inf 0.088 1.0000
## 0.0015780 0.00485100 Inf 0.325 1.0000
## -0.0446832 0.01249270 Inf -3.577 0.7242
## -0.5782782 0.03269628 Inf -17.686 <.0001
## 0.0014229 0.00297455 Inf 0.478 1.0000
## 0.0009048 0.00341370 Inf 0.265 1.0000
## 0.0015780 0.00316426 Inf 0.499 1.0000
## 0.0015780 0.00335102 Inf 0.471 1.0000
## 0.0015780 0.00304172 Inf 0.519 1.0000
## 0.0015780 0.00485100 Inf 0.325 1.0000
## -0.0310184 0.02033765 Inf -1.525 1.0000
## 0.0015780 0.00316426 Inf 0.499 1.0000
## 0.0015780 0.00307763 Inf 0.513 1.0000
## 0.0015780 0.00295495 Inf 0.534 1.0000
## 0.0015780 0.00327872 Inf 0.481 1.0000
## 0.0015780 0.00316426 Inf 0.499 1.0000
## 0.0015780 0.00335102 Inf 0.471 1.0000
## 0.0015780 0.00304172 Inf 0.519 1.0000
## 0.0015780 0.00485100 Inf 0.325 1.0000
## -0.0501361 0.02747334 Inf -1.825 1.0000
## 0.0002552 0.00340217 Inf 0.075 1.0000
## 0.0015780 0.00307763 Inf 0.513 1.0000
## 0.0015780 0.00295495 Inf 0.534 1.0000
## 0.0015780 0.00327872 Inf 0.481 1.0000
## -0.0002613 0.00263313 Inf -0.099 1.0000
## -0.0000673 0.00299621 Inf -0.022 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0002546 0.00265622 Inf 0.096 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0552826 0.02871213 Inf -1.925 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## -0.0002884 0.00290338 Inf -0.099 1.0000
## -0.0003712 0.00315546 Inf -0.118 1.0000
## -0.0018155 0.00302307 Inf -0.601 1.0000
## -0.0051898 0.00746960 Inf -0.695 1.0000
## -0.0053988 0.00757938 Inf -0.712 1.0000
## -0.0030921 0.00350063 Inf -0.883 1.0000
## -0.0160870 0.00608696 Inf -2.643 0.9999
## -0.9777926 0.00392786 Inf -248.938 <.0001
## -0.9776595 0.00484918 Inf -201.613 <.0001
## -0.0228079 0.00796936 Inf -2.862 0.9985
## -0.0190076 0.00806904 Inf -2.356 1.0000
## -0.0016116 0.00298531 Inf -0.540 1.0000
## -0.0010792 0.00530906 Inf -0.203 1.0000
## -0.3072818 0.06814299 Inf -4.509 0.0587
## -0.0159622 0.00646267 Inf -2.470 1.0000
## -0.0038184 0.00348328 Inf -1.096 1.0000
## 0.0000716 0.00258330 Inf 0.028 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## -0.1746469 0.02625742 Inf -6.651 <.0001
## -0.0193640 0.00815932 Inf -2.373 1.0000
## -0.0010790 0.00288815 Inf -0.374 1.0000
## -0.0008502 0.00518979 Inf -0.164 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0460066 0.01240860 Inf -3.708 0.5949
## -0.5796016 0.03266149 Inf -17.746 <.0001
## 0.0000995 0.00257917 Inf 0.039 1.0000
## -0.0004186 0.00307571 Inf -0.136 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0002546 0.00265622 Inf 0.096 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0323418 0.02028577 Inf -1.594 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## 0.0002546 0.00279571 Inf 0.091 1.0000
## 0.0002546 0.00300546 Inf 0.085 1.0000
## 0.0002546 0.00265622 Inf 0.096 1.0000
## 0.0002546 0.00461905 Inf 0.055 1.0000
## -0.0514595 0.02743527 Inf -1.876 1.0000
## -0.0010682 0.00306339 Inf -0.349 1.0000
## 0.0002546 0.00269726 Inf 0.094 1.0000
## 0.0002546 0.00255640 Inf 0.100 1.0000
## 0.0002546 0.00292463 Inf 0.087 1.0000
## 0.0001940 0.00289666 Inf 0.067 1.0000
## 0.0005159 0.00268880 Inf 0.192 1.0000
## 0.0005159 0.00290627 Inf 0.178 1.0000
## 0.0005159 0.00254346 Inf 0.203 1.0000
## 0.0005159 0.00455514 Inf 0.113 1.0000
## -0.0550213 0.02870154 Inf -1.917 1.0000
## 0.0005159 0.00268880 Inf 0.192 1.0000
## 0.0005159 0.00258629 Inf 0.199 1.0000
## 0.0005159 0.00243903 Inf 0.212 1.0000
## 0.0005159 0.00282260 Inf 0.183 1.0000
## -0.0000271 0.00280049 Inf -0.010 1.0000
## -0.0001099 0.00306104 Inf -0.036 1.0000
## -0.0015542 0.00292416 Inf -0.532 1.0000
## -0.0049286 0.00742993 Inf -0.663 1.0000
## -0.0051376 0.00754028 Inf -0.681 1.0000
## -0.0028309 0.00341542 Inf -0.829 1.0000
## -0.0158257 0.00603763 Inf -2.621 1.0000
## -0.9775313 0.00385535 Inf -253.552 <.0001
## -0.9773982 0.00479064 Inf -204.022 <.0001
## -0.0225466 0.00793156 Inf -2.843 0.9989
## -0.0187464 0.00803181 Inf -2.334 1.0000
## -0.0013503 0.00288513 Inf -0.468 1.0000
## -0.0008179 0.00525343 Inf -0.156 1.0000
## -0.3070206 0.06813862 Inf -4.506 0.0595
## -0.0157009 0.00641624 Inf -2.447 1.0000
## -0.0035571 0.00339753 Inf -1.047 1.0000
## 0.0003329 0.00246717 Inf 0.135 1.0000
## 0.0005159 0.00282260 Inf 0.183 1.0000
## -0.1743856 0.02624590 Inf -6.644 <.0001
## -0.0191027 0.00812249 Inf -2.352 1.0000
## -0.0008178 0.00278457 Inf -0.294 1.0000
## -0.0005889 0.00513289 Inf -0.115 1.0000
## 0.0005159 0.00455514 Inf 0.113 1.0000
## -0.0457453 0.01238412 Inf -3.694 0.6090
## -0.5793404 0.03265275 Inf -17.742 <.0001
## 0.0003608 0.00246285 Inf 0.146 1.0000
## -0.0001574 0.00297876 Inf -0.053 1.0000
## 0.0005159 0.00268880 Inf 0.192 1.0000
## 0.0005159 0.00290627 Inf 0.178 1.0000
## 0.0005159 0.00254346 Inf 0.203 1.0000
## 0.0005159 0.00455514 Inf 0.113 1.0000
## -0.0320806 0.02027087 Inf -1.583 1.0000
## 0.0005159 0.00268880 Inf 0.192 1.0000
## 0.0005159 0.00258629 Inf 0.199 1.0000
## 0.0005159 0.00243903 Inf 0.212 1.0000
## 0.0005159 0.00282260 Inf 0.183 1.0000
## 0.0005159 0.00268880 Inf 0.192 1.0000
## 0.0005159 0.00290627 Inf 0.178 1.0000
## 0.0005159 0.00254346 Inf 0.203 1.0000
## 0.0005159 0.00455514 Inf 0.113 1.0000
## -0.0511982 0.02742419 Inf -1.867 1.0000
## -0.0008070 0.00296594 Inf -0.272 1.0000
## 0.0005159 0.00258629 Inf 0.199 1.0000
## 0.0005159 0.00243903 Inf 0.212 1.0000
## 0.0005159 0.00282260 Inf 0.183 1.0000
## 0.0003219 0.00304522 Inf 0.106 1.0000
## 0.0003219 0.00323885 Inf 0.099 1.0000
## 0.0003219 0.00291769 Inf 0.110 1.0000
## 0.0003219 0.00477420 Inf 0.067 1.0000
## -0.0552153 0.02873740 Inf -1.921 1.0000
## 0.0003219 0.00304522 Inf 0.106 1.0000
## 0.0003219 0.00295510 Inf 0.109 1.0000
## 0.0003219 0.00282711 Inf 0.114 1.0000
## 0.0003219 0.00316399 Inf 0.102 1.0000
## -0.0002211 0.00314434 Inf -0.070 1.0000
## -0.0003039 0.00337848 Inf -0.090 1.0000
## -0.0017482 0.00325513 Inf -0.537 1.0000
## -0.0051226 0.00756644 Inf -0.677 1.0000
## -0.0053316 0.00767484 Inf -0.695 1.0000
## -0.0030249 0.00370284 Inf -0.817 1.0000
## -0.0160197 0.00620527 Inf -2.582 1.0000
## -0.9777253 0.00410988 Inf -237.896 <.0001
## -0.9775922 0.00499776 Inf -195.606 <.0001
## -0.0227406 0.00806005 Inf -2.821 0.9991
## -0.0189404 0.00815864 Inf -2.322 1.0000
## -0.0015443 0.00322009 Inf -0.480 1.0000
## -0.0010119 0.00544455 Inf -0.186 1.0000
## -0.3072146 0.06815366 Inf -4.508 0.0591
## -0.0158949 0.00657423 Inf -2.418 1.0000
## -0.0037511 0.00368641 Inf -1.018 1.0000
## 0.0001389 0.00285145 Inf 0.049 1.0000
## 0.0003219 0.00316399 Inf 0.102 1.0000
## -0.1745796 0.02628506 Inf -6.642 <.0001
## -0.0192967 0.00824793 Inf -2.340 1.0000
## -0.0010118 0.00313025 Inf -0.323 1.0000
## -0.0007829 0.00532832 Inf -0.147 1.0000
## 0.0003219 0.00477420 Inf 0.067 1.0000
## -0.0459393 0.01246697 Inf -3.685 0.6181
## -0.5795344 0.03268385 Inf -17.732 <.0001
## 0.0001668 0.00284771 Inf 0.059 1.0000
## -0.0003514 0.00330412 Inf -0.106 1.0000
## 0.0003219 0.00304522 Inf 0.106 1.0000
## 0.0003219 0.00323885 Inf 0.099 1.0000
## 0.0003219 0.00291769 Inf 0.110 1.0000
## 0.0003219 0.00477420 Inf 0.067 1.0000
## -0.0322746 0.02032154 Inf -1.588 1.0000
## 0.0003219 0.00304522 Inf 0.106 1.0000
## 0.0003219 0.00295510 Inf 0.109 1.0000
## 0.0003219 0.00282711 Inf 0.114 1.0000
## 0.0003219 0.00316399 Inf 0.102 1.0000
## 0.0003219 0.00304522 Inf 0.106 1.0000
## 0.0003219 0.00323885 Inf 0.099 1.0000
## 0.0003219 0.00291769 Inf 0.110 1.0000
## 0.0003219 0.00477420 Inf 0.067 1.0000
## -0.0513922 0.02746171 Inf -1.871 1.0000
## -0.0010010 0.00329263 Inf -0.304 1.0000
## 0.0003219 0.00295510 Inf 0.109 1.0000
## 0.0003219 0.00282711 Inf 0.114 1.0000
## 0.0003219 0.00316399 Inf 0.102 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0555372 0.02871765 Inf -1.934 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0005430 0.00295397 Inf -0.184 1.0000
## -0.0006258 0.00320207 Inf -0.195 1.0000
## -0.0020700 0.00307191 Inf -0.674 1.0000
## -0.0054444 0.00748968 Inf -0.727 1.0000
## -0.0056534 0.00759919 Inf -0.744 1.0000
## -0.0033467 0.00354305 Inf -0.945 1.0000
## -0.0163416 0.00611215 Inf -2.674 0.9999
## -0.9780472 0.00396260 Inf -246.819 <.0001
## -0.9779141 0.00487736 Inf -200.501 <.0001
## -0.0230625 0.00798881 Inf -2.887 0.9980
## -0.0192622 0.00808815 Inf -2.382 1.0000
## -0.0018662 0.00303472 Inf -0.615 1.0000
## -0.0013337 0.00533696 Inf -0.250 1.0000
## -0.3075364 0.06814522 Inf -4.513 0.0579
## -0.0162167 0.00648640 Inf -2.500 1.0000
## -0.0040729 0.00352598 Inf -1.155 1.0000
## -0.0001830 0.00263996 Inf -0.069 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1749015 0.02626340 Inf -6.660 <.0001
## -0.0196185 0.00817823 Inf -2.399 1.0000
## -0.0013336 0.00293912 Inf -0.454 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0462612 0.01242132 Inf -3.724 0.5779
## -0.5798562 0.03266578 Inf -17.751 <.0001
## -0.0001551 0.00263591 Inf -0.059 1.0000
## -0.0006732 0.00312352 Inf -0.216 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0325964 0.02029349 Inf -1.606 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0555372 0.02873883 Inf -1.932 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.0005430 0.00315320 Inf -0.172 1.0000
## -0.0006258 0.00338675 Inf -0.185 1.0000
## -0.0020700 0.00326395 Inf -0.634 1.0000
## -0.0054444 0.00757048 Inf -0.719 1.0000
## -0.0056534 0.00767883 Inf -0.736 1.0000
## -0.0033467 0.00371079 Inf -0.902 1.0000
## -0.0163416 0.00621089 Inf -2.631 1.0000
## -0.9780472 0.00411327 Inf -237.778 <.0001
## -0.9779141 0.00500054 Inf -195.562 <.0001
## -0.0230625 0.00806460 Inf -2.860 0.9986
## -0.0192622 0.00816302 Inf -2.360 1.0000
## -0.0018662 0.00322898 Inf -0.578 1.0000
## -0.0013337 0.00544976 Inf -0.245 1.0000
## -0.3075364 0.06815414 Inf -4.512 0.0580
## -0.0162167 0.00657952 Inf -2.465 1.0000
## -0.0040729 0.00369450 Inf -1.102 1.0000
## -0.0001830 0.00286114 Inf -0.064 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## -0.1749015 0.02628655 Inf -6.654 <.0001
## -0.0196185 0.00825228 Inf -2.377 1.0000
## -0.0013336 0.00313930 Inf -0.425 1.0000
## -0.0011048 0.00533362 Inf -0.207 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0462612 0.01247021 Inf -3.710 0.5928
## -0.5798562 0.03268440 Inf -17.741 <.0001
## -0.0001551 0.00285741 Inf -0.054 1.0000
## -0.0006732 0.00331258 Inf -0.203 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0555372 0.02870440 Inf -1.935 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0005430 0.00282231 Inf -0.192 1.0000
## -0.0006258 0.00308104 Inf -0.203 1.0000
## -0.0020700 0.00294553 Inf -0.703 1.0000
## -0.0054444 0.00743874 Inf -0.732 1.0000
## -0.0056534 0.00754899 Inf -0.749 1.0000
## -0.0033467 0.00343405 Inf -0.975 1.0000
## -0.0163416 0.00604962 Inf -2.701 0.9999
## -0.9780472 0.00386546 Inf -253.022 <.0001
## -0.9779141 0.00479876 Inf -203.785 <.0001
## -0.0230625 0.00794107 Inf -2.904 0.9975
## -0.0192622 0.00804100 Inf -2.396 1.0000
## -0.0018662 0.00290673 Inf -0.642 1.0000
## -0.0013337 0.00526523 Inf -0.253 1.0000
## -0.3075364 0.06813964 Inf -4.513 0.0578
## -0.0162167 0.00642751 Inf -2.523 1.0000
## -0.0040729 0.00341644 Inf -1.192 1.0000
## -0.0001830 0.00249177 Inf -0.073 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.1749015 0.02624892 Inf -6.663 <.0001
## -0.0196185 0.00813160 Inf -2.413 1.0000
## -0.0013336 0.00280677 Inf -0.475 1.0000
## -0.0011048 0.00514492 Inf -0.215 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0462612 0.01239067 Inf -3.734 0.5684
## -0.5798562 0.03265414 Inf -17.758 <.0001
## -0.0001551 0.00248748 Inf -0.062 1.0000
## -0.0006732 0.00299932 Inf -0.224 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0555372 0.02895208 Inf -1.918 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0005430 0.00471652 Inf -0.115 1.0000
## -0.0006258 0.00487575 Inf -0.128 1.0000
## -0.0020700 0.00479127 Inf -0.432 1.0000
## -0.0054444 0.00834356 Inf -0.653 1.0000
## -0.0056534 0.00844200 Inf -0.670 1.0000
## -0.0033467 0.00510616 Inf -0.655 1.0000
## -0.0163416 0.00713289 Inf -2.291 1.0000
## -0.9780472 0.00540573 Inf -180.928 <.0001
## -0.9779141 0.00610805 Inf -160.103 <.0001
## -0.0230625 0.00879436 Inf -2.622 1.0000
## -0.0192622 0.00888469 Inf -2.168 1.0000
## -0.0018662 0.00476751 Inf -0.391 1.0000
## -0.0013337 0.00648095 Inf -0.206 1.0000
## -0.3075364 0.06824434 Inf -4.506 0.0594
## -0.0162167 0.00745607 Inf -2.175 1.0000
## -0.0040729 0.00509433 Inf -0.800 1.0000
## -0.0001830 0.00452648 Inf -0.040 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.1749015 0.02651953 Inf -6.595 <.0001
## -0.0196185 0.00896677 Inf -2.188 1.0000
## -0.0013336 0.00470724 Inf -0.283 1.0000
## -0.0011048 0.00638360 Inf -0.173 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0555372 0.02871765 Inf 1.934 1.0000
## 0.0555372 0.02870823 Inf 1.935 1.0000
## 0.0555372 0.02869534 Inf 1.935 1.0000
## 0.0555372 0.02873048 Inf 1.933 1.0000
## 0.0549942 0.02872755 Inf 1.914 1.0000
## 0.0549114 0.02875401 Inf 1.910 1.0000
## 0.0534671 0.02873779 Inf 1.861 1.0000
## 0.0500927 0.02953424 Inf 1.696 1.0000
## 0.0498837 0.02956195 Inf 1.687 1.0000
## 0.0521905 0.02879027 Inf 1.813 1.0000
## 0.0391956 0.02920478 Inf 1.342 1.0000
## -0.9225100 0.02888295 Inf -31.940 <.0001
## -0.9223769 0.02902274 Inf -31.781 <.0001
## 0.0324747 0.02964988 Inf 1.095 1.0000
## 0.0362749 0.02967918 Inf 1.222 1.0000
## 0.0536710 0.02873412 Inf 1.868 1.0000
## 0.0542034 0.02906829 Inf 1.865 1.0000
## -0.2519993 0.07388945 Inf -3.410 0.8595
## 0.0393204 0.02928549 Inf 1.343 1.0000
## 0.0514642 0.02878725 Inf 1.788 1.0000
## 0.0553542 0.02869748 Inf 1.929 1.0000
## 0.0555372 0.02873048 Inf 1.933 1.0000
## -0.1193643 0.03879077 Inf -3.077 0.9850
## 0.0359186 0.02970362 Inf 1.209 1.0000
## 0.0542035 0.02872491 Inf 1.887 1.0000
## 0.0544324 0.02904705 Inf 1.874 1.0000
## 0.0555372 0.02895208 Inf 1.918 1.0000
## 0.0092760 0.03112994 Inf 0.298 1.0000
## -0.5243191 0.04341668 Inf -12.076 <.0001
## 0.0553821 0.02869715 Inf 1.930 1.0000
## 0.0548639 0.02874530 Inf 1.909 1.0000
## 0.0555372 0.02871765 Inf 1.934 1.0000
## 0.0555372 0.02873883 Inf 1.932 1.0000
## 0.0555372 0.02870440 Inf 1.935 1.0000
## 0.0555372 0.02895208 Inf 1.918 1.0000
## 0.0229408 0.03502639 Inf 0.655 1.0000
## 0.0555372 0.02871765 Inf 1.934 1.0000
## 0.0555372 0.02870823 Inf 1.935 1.0000
## 0.0555372 0.02869534 Inf 1.935 1.0000
## 0.0555372 0.02873048 Inf 1.933 1.0000
## 0.0555372 0.02871765 Inf 1.934 1.0000
## 0.0555372 0.02873883 Inf 1.932 1.0000
## 0.0555372 0.02870440 Inf 1.935 1.0000
## 0.0555372 0.02895208 Inf 1.918 1.0000
## 0.0038231 0.03959462 Inf 0.097 1.0000
## 0.0542144 0.02874307 Inf 1.886 1.0000
## 0.0555372 0.02870823 Inf 1.935 1.0000
## 0.0555372 0.02869534 Inf 1.935 1.0000
## 0.0555372 0.02873048 Inf 1.933 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.0005430 0.00295397 Inf -0.184 1.0000
## -0.0006258 0.00320207 Inf -0.195 1.0000
## -0.0020700 0.00307191 Inf -0.674 1.0000
## -0.0054444 0.00748968 Inf -0.727 1.0000
## -0.0056534 0.00759919 Inf -0.744 1.0000
## -0.0033467 0.00354305 Inf -0.945 1.0000
## -0.0163416 0.00611215 Inf -2.674 0.9999
## -0.9780472 0.00396260 Inf -246.819 <.0001
## -0.9779141 0.00487736 Inf -200.501 <.0001
## -0.0230625 0.00798881 Inf -2.887 0.9980
## -0.0192622 0.00808815 Inf -2.382 1.0000
## -0.0018662 0.00303472 Inf -0.615 1.0000
## -0.0013337 0.00533696 Inf -0.250 1.0000
## -0.3075364 0.06814522 Inf -4.513 0.0579
## -0.0162167 0.00648640 Inf -2.500 1.0000
## -0.0040729 0.00352598 Inf -1.155 1.0000
## -0.0001830 0.00263996 Inf -0.069 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## -0.1749015 0.02626340 Inf -6.660 <.0001
## -0.0196185 0.00817823 Inf -2.399 1.0000
## -0.0013336 0.00293912 Inf -0.454 1.0000
## -0.0011048 0.00521831 Inf -0.212 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0462612 0.01242132 Inf -3.724 0.5779
## -0.5798562 0.03266578 Inf -17.751 <.0001
## -0.0001551 0.00263591 Inf -0.059 1.0000
## -0.0006732 0.00312352 Inf -0.216 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0325964 0.02029349 Inf -1.606 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.0005430 0.00286097 Inf -0.190 1.0000
## -0.0006258 0.00311649 Inf -0.201 1.0000
## -0.0020700 0.00298259 Inf -0.694 1.0000
## -0.0054444 0.00745349 Inf -0.730 1.0000
## -0.0056534 0.00756352 Inf -0.747 1.0000
## -0.0033467 0.00346589 Inf -0.966 1.0000
## -0.0163416 0.00606775 Inf -2.693 0.9999
## -0.9780472 0.00389377 Inf -251.183 <.0001
## -0.9779141 0.00482160 Inf -202.819 <.0001
## -0.0230625 0.00795489 Inf -2.899 0.9977
## -0.0192622 0.00805465 Inf -2.391 1.0000
## -0.0018662 0.00294427 Inf -0.634 1.0000
## -0.0013337 0.00528605 Inf -0.252 1.0000
## -0.3075364 0.06814125 Inf -4.513 0.0578
## -0.0162167 0.00644458 Inf -2.516 1.0000
## -0.0040729 0.00344845 Inf -1.181 1.0000
## -0.0001830 0.00253547 Inf -0.072 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## -0.1749015 0.02625310 Inf -6.662 <.0001
## -0.0196185 0.00814510 Inf -2.409 1.0000
## -0.0013336 0.00284564 Inf -0.469 1.0000
## -0.0011048 0.00516623 Inf -0.214 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0462612 0.01239954 Inf -3.731 0.5712
## -0.5798562 0.03265751 Inf -17.756 <.0001
## -0.0001551 0.00253125 Inf -0.061 1.0000
## -0.0006732 0.00303572 Inf -0.222 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0325964 0.02028016 Inf -1.607 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00272857 Inf -0.199 1.0000
## -0.0006258 0.00299541 Inf -0.209 1.0000
## -0.0020700 0.00285584 Inf -0.725 1.0000
## -0.0054444 0.00740368 Inf -0.735 1.0000
## -0.0056534 0.00751444 Inf -0.752 1.0000
## -0.0033467 0.00335744 Inf -0.997 1.0000
## -0.0163416 0.00600646 Inf -2.721 0.9998
## -0.9780472 0.00379755 Inf -257.547 <.0001
## -0.9779141 0.00474424 Inf -206.127 <.0001
## -0.0230625 0.00790824 Inf -2.916 0.9971
## -0.0192622 0.00800858 Inf -2.405 1.0000
## -0.0018662 0.00281580 Inf -0.663 1.0000
## -0.0013337 0.00521558 Inf -0.256 1.0000
## -0.3075364 0.06813582 Inf -4.514 0.0577
## -0.0162167 0.00638690 Inf -2.539 1.0000
## -0.0040729 0.00333942 Inf -1.220 1.0000
## -0.0001830 0.00238507 Inf -0.077 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.1749015 0.02623900 Inf -6.666 <.0001
## -0.0196185 0.00809954 Inf -2.422 1.0000
## -0.0013336 0.00271250 Inf -0.492 1.0000
## -0.0011048 0.00509411 Inf -0.217 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0462612 0.01236966 Inf -3.740 0.5619
## -0.5798562 0.03264617 Inf -17.762 <.0001
## -0.0001551 0.00238059 Inf -0.065 1.0000
## -0.0006732 0.00291129 Inf -0.231 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0325964 0.02026191 Inf -1.609 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## -0.0005430 0.00307626 Inf -0.176 1.0000
## -0.0006258 0.00331522 Inf -0.189 1.0000
## -0.0020700 0.00318968 Inf -0.649 1.0000
## -0.0054444 0.00753875 Inf -0.722 1.0000
## -0.0056534 0.00764756 Inf -0.739 1.0000
## -0.0033467 0.00364563 Inf -0.918 1.0000
## -0.0163416 0.00617218 Inf -2.648 0.9999
## -0.9780472 0.00405459 Inf -241.220 <.0001
## -0.9779141 0.00495238 Inf -197.464 <.0001
## -0.0230625 0.00803483 Inf -2.870 0.9984
## -0.0192622 0.00813361 Inf -2.368 1.0000
## -0.0018662 0.00315388 Inf -0.592 1.0000
## -0.0013337 0.00540561 Inf -0.247 1.0000
## -0.3075364 0.06815063 Inf -4.513 0.0580
## -0.0162167 0.00654300 Inf -2.478 1.0000
## -0.0040729 0.00362905 Inf -1.122 1.0000
## -0.0001830 0.00277612 Inf -0.066 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## -0.0000828 0.00329639 Inf -0.025 1.0000
## -0.0015271 0.00316967 Inf -0.482 1.0000
## -0.0049015 0.00752991 Inf -0.651 1.0000
## -0.0051105 0.00763882 Inf -0.669 1.0000
## -0.0028038 0.00362781 Inf -0.773 1.0000
## -0.0157986 0.00616020 Inf -2.565 1.0000
## -0.9775042 0.00404502 Inf -241.656 <.0001
## -0.9773711 0.00494457 Inf -197.665 <.0001
## -0.0225195 0.00802523 Inf -2.806 0.9993
## -0.0187193 0.00812433 Inf -2.304 1.0000
## -0.0013232 0.00313370 Inf -0.422 1.0000
## -0.0007908 0.00539395 Inf -0.147 1.0000
## -0.3069935 0.06814960 Inf -4.505 0.0598
## -0.0156738 0.00653170 Inf -2.400 1.0000
## -0.0035300 0.00361097 Inf -0.978 1.0000
## 0.0003600 0.00275375 Inf 0.131 1.0000
## 0.0005430 0.00307626 Inf 0.176 1.0000
## -0.1743585 0.02627435 Inf -6.636 <.0001
## -0.0190756 0.00821399 Inf -2.322 1.0000
## -0.0007907 0.00304138 Inf -0.260 1.0000
## -0.0005618 0.00527662 Inf -0.106 1.0000
## 0.0005430 0.00471652 Inf 0.115 1.0000
## -0.0457182 0.01244430 Inf -3.674 0.6293
## -0.5793133 0.03267568 Inf -17.729 <.0001
## 0.0003879 0.00274988 Inf 0.141 1.0000
## -0.0001303 0.00322012 Inf -0.040 1.0000
## 0.0005430 0.00295397 Inf 0.184 1.0000
## 0.0005430 0.00315320 Inf 0.172 1.0000
## 0.0005430 0.00282231 Inf 0.192 1.0000
## 0.0005430 0.00471652 Inf 0.115 1.0000
## -0.0320535 0.02030770 Inf -1.578 1.0000
## 0.0005430 0.00295397 Inf 0.184 1.0000
## 0.0005430 0.00286097 Inf 0.190 1.0000
## 0.0005430 0.00272857 Inf 0.199 1.0000
## 0.0005430 0.00307626 Inf 0.176 1.0000
## 0.0005430 0.00295397 Inf 0.184 1.0000
## 0.0005430 0.00315320 Inf 0.172 1.0000
## 0.0005430 0.00282231 Inf 0.192 1.0000
## 0.0005430 0.00471652 Inf 0.115 1.0000
## -0.0511711 0.02745142 Inf -1.864 1.0000
## -0.0007798 0.00320826 Inf -0.243 1.0000
## 0.0005430 0.00286097 Inf 0.190 1.0000
## 0.0005430 0.00272857 Inf 0.199 1.0000
## 0.0005430 0.00307626 Inf 0.176 1.0000
## -0.0014443 0.00340199 Inf -0.425 1.0000
## -0.0048187 0.00763056 Inf -0.632 1.0000
## -0.0050277 0.00773805 Inf -0.650 1.0000
## -0.0027210 0.00383242 Inf -0.710 1.0000
## -0.0157158 0.00628265 Inf -2.501 1.0000
## -0.9774214 0.00423042 Inf -231.046 <.0001
## -0.9772883 0.00509736 Inf -191.724 <.0001
## -0.0224367 0.00811955 Inf -2.763 0.9996
## -0.0186365 0.00821754 Inf -2.268 1.0000
## -0.0012404 0.00336851 Inf -0.368 1.0000
## -0.0007080 0.00553368 Inf -0.128 1.0000
## -0.3069107 0.06816078 Inf -4.503 0.0602
## -0.0155910 0.00664732 Inf -2.345 1.0000
## -0.0034472 0.00381646 Inf -0.903 1.0000
## 0.0004428 0.00301835 Inf 0.147 1.0000
## 0.0006258 0.00331522 Inf 0.189 1.0000
## -0.1742757 0.02630329 Inf -6.626 <.0001
## -0.0189928 0.00830620 Inf -2.287 1.0000
## -0.0007079 0.00328282 Inf -0.216 1.0000
## -0.0004790 0.00541938 Inf -0.088 1.0000
## 0.0006258 0.00487575 Inf 0.128 1.0000
## -0.0456354 0.01250525 Inf -3.649 0.6539
## -0.5792305 0.03269912 Inf -17.714 <.0001
## 0.0004707 0.00301482 Inf 0.156 1.0000
## -0.0000475 0.00344911 Inf -0.014 1.0000
## 0.0006258 0.00320207 Inf 0.195 1.0000
## 0.0006258 0.00338675 Inf 0.185 1.0000
## 0.0006258 0.00308104 Inf 0.203 1.0000
## 0.0006258 0.00487575 Inf 0.128 1.0000
## -0.0319707 0.02034513 Inf -1.571 1.0000
## 0.0006258 0.00320207 Inf 0.195 1.0000
## 0.0006258 0.00311649 Inf 0.201 1.0000
## 0.0006258 0.00299541 Inf 0.209 1.0000
## 0.0006258 0.00331522 Inf 0.189 1.0000
## 0.0006258 0.00320207 Inf 0.195 1.0000
## 0.0006258 0.00338675 Inf 0.185 1.0000
## 0.0006258 0.00308104 Inf 0.203 1.0000
## 0.0006258 0.00487575 Inf 0.128 1.0000
## -0.0510883 0.02747910 Inf -1.859 1.0000
## -0.0006970 0.00343801 Inf -0.203 1.0000
## 0.0006258 0.00311649 Inf 0.201 1.0000
## 0.0006258 0.00299541 Inf 0.209 1.0000
## 0.0006258 0.00331522 Inf 0.189 1.0000
## -0.0033744 0.00757519 Inf -0.445 1.0000
## -0.0035834 0.00768340 Inf -0.466 1.0000
## -0.0012767 0.00372219 Inf -0.343 1.0000
## -0.0142715 0.00621228 Inf -2.297 1.0000
## -0.9759772 0.00414696 Inf -235.347 <.0001
## -0.9758440 0.00502836 Inf -194.068 <.0001
## -0.0209924 0.00806421 Inf -2.603 1.0000
## -0.0171922 0.00816340 Inf -2.106 1.0000
## 0.0002039 0.00324361 Inf 0.063 1.0000
## 0.0007363 0.00545878 Inf 0.135 1.0000
## -0.3054664 0.06815447 Inf -4.482 0.0652
## -0.0141467 0.00658087 Inf -2.150 1.0000
## -0.0020029 0.00370531 Inf -0.541 1.0000
## 0.0018870 0.00287974 Inf 0.655 1.0000
## 0.0020700 0.00318968 Inf 0.649 1.0000
## -0.1728315 0.02628587 Inf -6.575 <.0001
## -0.0175485 0.00825258 Inf -2.126 1.0000
## 0.0007364 0.00315494 Inf 0.233 1.0000
## 0.0009653 0.00534299 Inf 0.181 1.0000
## 0.0020700 0.00479127 Inf 0.432 1.0000
## -0.0441911 0.01246815 Inf -3.544 0.7539
## -0.5777862 0.03268789 Inf -17.676 <.0001
## 0.0019150 0.00287606 Inf 0.666 1.0000
## 0.0013968 0.00332811 Inf 0.420 1.0000
## 0.0020700 0.00307191 Inf 0.674 1.0000
## 0.0020700 0.00326395 Inf 0.634 1.0000
## 0.0020700 0.00294553 Inf 0.703 1.0000
## 0.0020700 0.00479127 Inf 0.432 1.0000
## -0.0305264 0.02032270 Inf -1.502 1.0000
## 0.0020700 0.00307191 Inf 0.674 1.0000
## 0.0020700 0.00298259 Inf 0.694 1.0000
## 0.0020700 0.00285584 Inf 0.725 1.0000
## 0.0020700 0.00318968 Inf 0.649 1.0000
## 0.0020700 0.00307191 Inf 0.674 1.0000
## 0.0020700 0.00326395 Inf 0.634 1.0000
## 0.0020700 0.00294553 Inf 0.703 1.0000
## 0.0020700 0.00479127 Inf 0.432 1.0000
## -0.0496440 0.02746217 Inf -1.808 1.0000
## 0.0007472 0.00331612 Inf 0.225 1.0000
## 0.0020700 0.00298259 Inf 0.694 1.0000
## 0.0020700 0.00285584 Inf 0.725 1.0000
## 0.0020700 0.00318968 Inf 0.649 1.0000
## -0.0002090 0.01027800 Inf -0.020 1.0000
## 0.0020977 0.00777681 Inf 0.270 1.0000
## -0.0108971 0.00922587 Inf -1.181 1.0000
## -0.9726028 0.00800673 Inf -121.473 <.0001
## -0.9724696 0.00849682 Inf -114.451 <.0001
## -0.0176180 0.01056035 Inf -1.668 1.0000
## -0.0138178 0.01063716 Inf -1.299 1.0000
## 0.0035783 0.00756042 Inf 0.473 1.0000
## 0.0041107 0.00874316 Inf 0.470 1.0000
## -0.3020920 0.06849524 Inf -4.410 0.0853
## -0.0107723 0.00947802 Inf -1.137 1.0000
## 0.0013715 0.00776830 Inf 0.177 1.0000
## 0.0052614 0.00741280 Inf 0.710 1.0000
## 0.0054444 0.00753875 Inf 0.722 1.0000
## -0.1694571 0.02715497 Inf -6.240 <.0001
## -0.0141741 0.01070566 Inf -1.324 1.0000
## 0.0041108 0.00752317 Inf 0.546 1.0000
## 0.0043397 0.00867147 Inf 0.500 1.0000
## 0.0054444 0.00834356 Inf 0.653 1.0000
## -0.0408167 0.01420837 Inf -2.873 0.9983
## -0.5744118 0.03339663 Inf -17.200 <.0001
## 0.0052894 0.00741139 Inf 0.714 1.0000
## 0.0047712 0.00759788 Inf 0.628 1.0000
## 0.0054444 0.00748968 Inf 0.727 1.0000
## 0.0054444 0.00757048 Inf 0.719 1.0000
## 0.0054444 0.00743874 Inf 0.732 1.0000
## 0.0054444 0.00834356 Inf 0.653 1.0000
## -0.0271520 0.02143517 Inf -1.267 1.0000
## 0.0054444 0.00748968 Inf 0.727 1.0000
## 0.0054444 0.00745349 Inf 0.730 1.0000
## 0.0054444 0.00740368 Inf 0.735 1.0000
## 0.0054444 0.00753875 Inf 0.722 1.0000
## 0.0054444 0.00748968 Inf 0.727 1.0000
## 0.0054444 0.00757048 Inf 0.719 1.0000
## 0.0054444 0.00743874 Inf 0.732 1.0000
## 0.0054444 0.00834356 Inf 0.653 1.0000
## -0.0462696 0.02829462 Inf -1.635 1.0000
## 0.0041216 0.00759218 Inf 0.543 1.0000
## 0.0054444 0.00745349 Inf 0.730 1.0000
## 0.0054444 0.00740368 Inf 0.735 1.0000
## 0.0054444 0.00753875 Inf 0.722 1.0000
## 0.0023067 0.00788220 Inf 0.293 1.0000
## -0.0106882 0.00931457 Inf -1.147 1.0000
## -0.9723938 0.00811016 Inf -119.898 <.0001
## -0.9722607 0.00859436 Inf -113.128 <.0001
## -0.0174090 0.01063784 Inf -1.637 1.0000
## -0.0136088 0.01071414 Inf -1.270 1.0000
## 0.0037873 0.00766884 Inf 0.494 1.0000
## 0.0043197 0.00883710 Inf 0.489 1.0000
## -0.3018830 0.06850726 Inf -4.407 0.0865
## -0.0105633 0.00956438 Inf -1.104 1.0000
## 0.0015805 0.00787378 Inf 0.201 1.0000
## 0.0054704 0.00752342 Inf 0.727 1.0000
## 0.0056534 0.00764756 Inf 0.739 1.0000
## -0.1692481 0.02718515 Inf -6.226 <.0001
## -0.0139651 0.01078215 Inf -1.295 1.0000
## 0.0043198 0.00763214 Inf 0.566 1.0000
## 0.0045486 0.00876619 Inf 0.519 1.0000
## 0.0056534 0.00844200 Inf 0.670 1.0000
## -0.0406078 0.01426592 Inf -2.846 0.9988
## -0.5742028 0.03342151 Inf -17.181 <.0001
## 0.0054984 0.00752203 Inf 0.731 1.0000
## 0.0049802 0.00770582 Inf 0.646 1.0000
## 0.0056534 0.00759919 Inf 0.744 1.0000
## 0.0056534 0.00767883 Inf 0.736 1.0000
## 0.0056534 0.00754899 Inf 0.749 1.0000
## 0.0056534 0.00844200 Inf 0.670 1.0000
## -0.0269430 0.02147340 Inf -1.255 1.0000
## 0.0056534 0.00759919 Inf 0.744 1.0000
## 0.0056534 0.00756352 Inf 0.747 1.0000
## 0.0056534 0.00751444 Inf 0.752 1.0000
## 0.0056534 0.00764756 Inf 0.739 1.0000
## 0.0056534 0.00759919 Inf 0.744 1.0000
## 0.0056534 0.00767883 Inf 0.736 1.0000
## 0.0056534 0.00754899 Inf 0.749 1.0000
## 0.0056534 0.00844200 Inf 0.670 1.0000
## -0.0460607 0.02832356 Inf -1.626 1.0000
## 0.0043306 0.00770018 Inf 0.562 1.0000
## 0.0056534 0.00756352 Inf 0.747 1.0000
## 0.0056534 0.00751444 Inf 0.752 1.0000
## 0.0056534 0.00764756 Inf 0.739 1.0000
## -0.0129949 0.00645416 Inf -2.013 1.0000
## -0.9747005 0.00451805 Inf -215.735 <.0001
## -0.9745674 0.00533857 Inf -182.552 <.0001
## -0.0197157 0.00825116 Inf -2.389 1.0000
## -0.0159155 0.00834856 Inf -1.906 1.0000
## 0.0014806 0.00369186 Inf 0.401 1.0000
## 0.0020130 0.00573666 Inf 0.351 1.0000
## -0.3041897 0.06817707 Inf -4.462 0.0704
## -0.0128700 0.00680969 Inf -1.890 1.0000
## -0.0007262 0.00410239 Inf -0.177 1.0000
## 0.0031637 0.00337767 Inf 0.937 1.0000
## 0.0033467 0.00364563 Inf 0.918 1.0000
## -0.1715548 0.02634350 Inf -6.512 <.0001
## -0.0162718 0.00843574 Inf -1.929 1.0000
## 0.0020131 0.00361450 Inf 0.557 1.0000
## 0.0022419 0.00562667 Inf 0.398 1.0000
## 0.0033467 0.00510616 Inf 0.655 1.0000
## -0.0429145 0.01258883 Inf -3.409 0.8606
## -0.5765095 0.03273660 Inf -17.611 <.0001
## 0.0031917 0.00337456 Inf 0.946 1.0000
## 0.0026735 0.00376696 Inf 0.710 1.0000
## 0.0033467 0.00354305 Inf 0.945 1.0000
## 0.0033467 0.00371079 Inf 0.902 1.0000
## 0.0033467 0.00343405 Inf 0.975 1.0000
## 0.0033467 0.00510616 Inf 0.655 1.0000
## -0.0292497 0.02039726 Inf -1.434 1.0000
## 0.0033467 0.00354305 Inf 0.945 1.0000
## 0.0033467 0.00346589 Inf 0.966 1.0000
## 0.0033467 0.00335744 Inf 0.997 1.0000
## 0.0033467 0.00364563 Inf 0.918 1.0000
## 0.0033467 0.00354305 Inf 0.945 1.0000
## 0.0033467 0.00371079 Inf 0.902 1.0000
## 0.0033467 0.00343405 Inf 0.975 1.0000
## 0.0033467 0.00510616 Inf 0.655 1.0000
## -0.0483674 0.02751711 Inf -1.758 1.0000
## 0.0020239 0.00375602 Inf 0.539 1.0000
## 0.0033467 0.00346589 Inf 0.966 1.0000
## 0.0033467 0.00335744 Inf 0.997 1.0000
## 0.0033467 0.00364563 Inf 0.918 1.0000
## -0.9617056 0.00678199 Inf -141.803 <.0001
## -0.9615725 0.00735435 Inf -130.749 <.0001
## -0.0067209 0.00961065 Inf -0.699 1.0000
## -0.0029207 0.00969734 Inf -0.301 1.0000
## 0.0144754 0.00619467 Inf 2.337 1.0000
## 0.0150078 0.00759411 Inf 1.976 1.0000
## -0.2911948 0.06835665 Inf -4.260 0.1445
## 0.0001248 0.00841215 Inf 0.015 1.0000
## 0.0122686 0.00644256 Inf 1.904 1.0000
## 0.0161586 0.00601728 Inf 2.685 0.9999
## 0.0163416 0.00617218 Inf 2.648 0.9999
## -0.1585599 0.02679790 Inf -5.917 <.0001
## -0.0032770 0.00977220 Inf -0.335 1.0000
## 0.0150079 0.00615027 Inf 2.440 1.0000
## 0.0152368 0.00751186 Inf 2.028 1.0000
## 0.0163416 0.00713289 Inf 2.291 1.0000
## -0.0299196 0.01351134 Inf -2.214 1.0000
## -0.5635147 0.03312158 Inf -17.014 <.0001
## 0.0161865 0.00601562 Inf 2.691 0.9999
## 0.0156683 0.00624281 Inf 2.510 1.0000
## 0.0163416 0.00611215 Inf 2.674 0.9999
## 0.0163416 0.00621089 Inf 2.631 1.0000
## 0.0163416 0.00604962 Inf 2.701 0.9999
## 0.0163416 0.00713289 Inf 2.291 1.0000
## -0.0162548 0.02098146 Inf -0.775 1.0000
## 0.0163416 0.00611215 Inf 2.674 0.9999
## 0.0163416 0.00606775 Inf 2.693 0.9999
## 0.0163416 0.00600646 Inf 2.721 0.9998
## 0.0163416 0.00617218 Inf 2.648 0.9999
## 0.0163416 0.00611215 Inf 2.674 0.9999
## 0.0163416 0.00621089 Inf 2.631 1.0000
## 0.0163416 0.00604962 Inf 2.701 0.9999
## 0.0163416 0.00713289 Inf 2.291 1.0000
## -0.0353725 0.02795075 Inf -1.266 1.0000
## 0.0150188 0.00623451 Inf 2.409 1.0000
## 0.0163416 0.00606775 Inf 2.693 0.9999
## 0.0163416 0.00600646 Inf 2.721 0.9998
## 0.0163416 0.00617218 Inf 2.648 0.9999
## 0.0001331 0.00542312 Inf 0.025 1.0000
## 0.9549847 0.00852811 Inf 111.981 <.0001
## 0.9587850 0.00861288 Inf 111.320 <.0001
## 0.9761810 0.00411752 Inf 237.080 <.0001
## 0.9767135 0.00601537 Inf 162.370 <.0001
## 0.6705108 0.06820618 Inf 9.831 <.0001
## 0.9618305 0.00712072 Inf 135.075 <.0001
## 0.9739743 0.00451070 Inf 215.925 <.0001
## 0.9778642 0.00381777 Inf 256.135 <.0001
## 0.9780472 0.00405459 Inf 241.220 <.0001
## 0.8031457 0.02643889 Inf 30.377 <.0001
## 0.9584287 0.00869836 Inf 110.185 <.0001
## 0.9767136 0.00404227 Inf 241.625 <.0001
## 0.9769424 0.00590877 Inf 165.338 <.0001
## 0.9780472 0.00540573 Inf 180.928 <.0001
## 0.9317860 0.01279511 Inf 72.824 <.0001
## 0.3981910 0.03276065 Inf 12.155 <.0001
## 0.9778921 0.00381466 Inf 256.351 <.0001
## 0.9773740 0.00417176 Inf 234.284 <.0001
## 0.9780472 0.00396260 Inf 246.819 <.0001
## 0.9780472 0.00411327 Inf 237.778 <.0001
## 0.9780472 0.00386546 Inf 253.022 <.0001
## 0.9780472 0.00540573 Inf 180.928 <.0001
## 0.9454508 0.02051850 Inf 46.078 <.0001
## 0.9780472 0.00396260 Inf 246.819 <.0001
## 0.9780472 0.00389377 Inf 251.183 <.0001
## 0.9780472 0.00379755 Inf 257.547 <.0001
## 0.9780472 0.00405459 Inf 241.220 <.0001
## 0.9780472 0.00396260 Inf 246.819 <.0001
## 0.9780472 0.00411327 Inf 237.778 <.0001
## 0.9780472 0.00386546 Inf 253.022 <.0001
## 0.9780472 0.00540573 Inf 180.928 <.0001
## 0.9263331 0.02761336 Inf 33.547 <.0001
## 0.9767244 0.00416918 Inf 234.273 <.0001
## 0.9780472 0.00389377 Inf 251.183 <.0001
## 0.9780472 0.00379755 Inf 257.547 <.0001
## 0.9780472 0.00405459 Inf 241.220 <.0001
## 0.9548516 0.00899004 Inf 106.212 <.0001
## 0.9586518 0.00907047 Inf 105.689 <.0001
## 0.9760479 0.00500410 Inf 195.049 <.0001
## 0.9765803 0.00665369 Inf 146.773 <.0001
## 0.6703777 0.06826546 Inf 9.820 <.0001
## 0.9616973 0.00766783 Inf 125.420 <.0001
## 0.9738411 0.00533237 Inf 182.628 <.0001
## 0.9777311 0.00476044 Inf 205.387 <.0001
## 0.9779141 0.00495238 Inf 197.464 <.0001
## 0.8030126 0.02659152 Inf 30.198 <.0001
## 0.9582955 0.00915167 Inf 104.713 <.0001
## 0.9765804 0.00494235 Inf 197.594 <.0001
## 0.9768093 0.00655747 Inf 148.961 <.0001
## 0.9779141 0.00610805 Inf 160.103 <.0001
## 0.9316529 0.01310761 Inf 71.077 <.0001
## 0.3980578 0.03288374 Inf 12.105 <.0001
## 0.9777590 0.00475795 Inf 205.500 <.0001
## 0.9772409 0.00504878 Inf 193.560 <.0001
## 0.9779141 0.00487736 Inf 200.501 <.0001
## 0.9779141 0.00500054 Inf 195.562 <.0001
## 0.9779141 0.00479876 Inf 203.785 <.0001
## 0.9779141 0.00610805 Inf 160.103 <.0001
## 0.9453177 0.02071479 Inf 45.635 <.0001
## 0.9779141 0.00487736 Inf 200.501 <.0001
## 0.9779141 0.00482160 Inf 202.819 <.0001
## 0.9779141 0.00474424 Inf 206.127 <.0001
## 0.9779141 0.00495238 Inf 197.464 <.0001
## 0.9779141 0.00487736 Inf 200.501 <.0001
## 0.9779141 0.00500054 Inf 195.562 <.0001
## 0.9779141 0.00479876 Inf 203.785 <.0001
## 0.9779141 0.00610805 Inf 160.103 <.0001
## 0.9262000 0.02775955 Inf 33.365 <.0001
## 0.9765913 0.00504667 Inf 193.512 <.0001
## 0.9779141 0.00482160 Inf 202.819 <.0001
## 0.9779141 0.00474424 Inf 206.127 <.0001
## 0.9779141 0.00495238 Inf 197.464 <.0001
## 0.0038002 0.01096992 Inf 0.346 1.0000
## 0.0211963 0.00805080 Inf 2.633 1.0000
## 0.0217287 0.00917157 Inf 2.369 1.0000
## -0.2844740 0.06854921 Inf -4.150 0.2052
## 0.0068457 0.00985309 Inf 0.695 1.0000
## 0.0189895 0.00824164 Inf 2.304 1.0000
## 0.0228795 0.00791633 Inf 2.890 0.9979
## 0.0230625 0.00803483 Inf 2.870 0.9984
## -0.1518390 0.02728298 Inf -5.565 0.0004
## 0.0034439 0.01103606 Inf 0.312 1.0000
## 0.0217288 0.00801705 Inf 2.710 0.9998
## 0.0219577 0.00910373 Inf 2.412 1.0000
## 0.0230625 0.00879436 Inf 2.622 1.0000
## -0.0231987 0.01444872 Inf -1.606 1.0000
## -0.5567938 0.03352152 Inf -16.610 <.0001
## 0.0229074 0.00791508 Inf 2.894 0.9978
## 0.0223892 0.00808873 Inf 2.768 0.9996
## 0.0230625 0.00798881 Inf 2.887 0.9980
## 0.0230625 0.00806460 Inf 2.860 0.9986
## 0.0230625 0.00794107 Inf 2.904 0.9975
## 0.0230625 0.00879436 Inf 2.622 1.0000
## -0.0095340 0.02159779 Inf -0.441 1.0000
## 0.0230625 0.00798881 Inf 2.887 0.9980
## 0.0230625 0.00795489 Inf 2.899 0.9977
## 0.0230625 0.00790824 Inf 2.916 0.9971
## 0.0230625 0.00803483 Inf 2.870 0.9984
## 0.0230625 0.00798881 Inf 2.887 0.9980
## 0.0230625 0.00806460 Inf 2.860 0.9986
## 0.0230625 0.00794107 Inf 2.904 0.9975
## 0.0230625 0.00879436 Inf 2.622 1.0000
## -0.0286516 0.02841558 Inf -1.008 1.0000
## 0.0217397 0.00808187 Inf 2.690 0.9999
## 0.0230625 0.00795489 Inf 2.899 0.9977
## 0.0230625 0.00790824 Inf 2.916 0.9971
## 0.0230625 0.00803483 Inf 2.870 0.9984
## 0.0173961 0.00815007 Inf 2.134 1.0000
## 0.0179285 0.00925867 Inf 1.936 1.0000
## -0.2882742 0.06856124 Inf -4.205 0.1731
## 0.0030455 0.00993764 Inf 0.306 1.0000
## 0.0151893 0.00833939 Inf 1.821 1.0000
## 0.0190792 0.00801663 Inf 2.380 1.0000
## 0.0192622 0.00813361 Inf 2.368 1.0000
## -0.1556393 0.02731446 Inf -5.698 0.0002
## -0.0003563 0.01111211 Inf -0.032 1.0000
## 0.0179286 0.00811654 Inf 2.209 1.0000
## 0.0181574 0.00919140 Inf 1.975 1.0000
## 0.0192622 0.00888469 Inf 2.168 1.0000
## -0.0269989 0.01450853 Inf -1.861 1.0000
## -0.5605940 0.03354382 Inf -16.712 <.0001
## 0.0191072 0.00801539 Inf 2.384 1.0000
## 0.0185890 0.00818711 Inf 2.271 1.0000
## 0.0192622 0.00808815 Inf 2.382 1.0000
## 0.0192622 0.00816302 Inf 2.360 1.0000
## 0.0192622 0.00804100 Inf 2.396 1.0000
## 0.0192622 0.00888469 Inf 2.168 1.0000
## -0.0133342 0.02163744 Inf -0.616 1.0000
## 0.0192622 0.00808815 Inf 2.382 1.0000
## 0.0192622 0.00805465 Inf 2.391 1.0000
## 0.0192622 0.00800858 Inf 2.405 1.0000
## 0.0192622 0.00813361 Inf 2.368 1.0000
## 0.0192622 0.00808815 Inf 2.382 1.0000
## 0.0192622 0.00816302 Inf 2.360 1.0000
## 0.0192622 0.00804100 Inf 2.396 1.0000
## 0.0192622 0.00888469 Inf 2.168 1.0000
## -0.0324518 0.02844612 Inf -1.141 1.0000
## 0.0179394 0.00818057 Inf 2.193 1.0000
## 0.0192622 0.00805465 Inf 2.391 1.0000
## 0.0192622 0.00800858 Inf 2.405 1.0000
## 0.0192622 0.00813361 Inf 2.368 1.0000
## 0.0005324 0.00543803 Inf 0.098 1.0000
## -0.3056703 0.06815285 Inf -4.485 0.0645
## -0.0143506 0.00656425 Inf -2.186 1.0000
## -0.0022068 0.00367490 Inf -0.600 1.0000
## 0.0016832 0.00284005 Inf 0.593 1.0000
## 0.0018662 0.00315388 Inf 0.592 1.0000
## -0.1730353 0.02628181 Inf -6.584 <.0001
## -0.0177524 0.00823941 Inf -2.155 1.0000
## 0.0005325 0.00311889 Inf 0.171 1.0000
## 0.0007614 0.00532177 Inf 0.143 1.0000
## 0.0018662 0.00476751 Inf 0.391 1.0000
## -0.0443950 0.01245965 Inf -3.563 0.7368
## -0.5779901 0.03268425 Inf -17.684 <.0001
## 0.0017111 0.00283633 Inf 0.603 1.0000
## 0.0011929 0.00329388 Inf 0.362 1.0000
## 0.0018662 0.00303472 Inf 0.615 1.0000
## 0.0018662 0.00322898 Inf 0.578 1.0000
## 0.0018662 0.00290673 Inf 0.642 1.0000
## 0.0018662 0.00476751 Inf 0.391 1.0000
## -0.0307303 0.02031744 Inf -1.513 1.0000
## 0.0018662 0.00303472 Inf 0.615 1.0000
## 0.0018662 0.00294427 Inf 0.634 1.0000
## 0.0018662 0.00281580 Inf 0.663 1.0000
## 0.0018662 0.00315388 Inf 0.592 1.0000
## 0.0018662 0.00303472 Inf 0.615 1.0000
## 0.0018662 0.00322898 Inf 0.578 1.0000
## 0.0018662 0.00290673 Inf 0.642 1.0000
## 0.0018662 0.00476751 Inf 0.391 1.0000
## -0.0498479 0.02745832 Inf -1.815 1.0000
## 0.0005434 0.00328184 Inf 0.166 1.0000
## 0.0018662 0.00294427 Inf 0.634 1.0000
## 0.0018662 0.00281580 Inf 0.663 1.0000
## 0.0018662 0.00315388 Inf 0.592 1.0000
## -0.3062027 0.06829422 Inf -4.484 0.0648
## -0.0148830 0.00789846 Inf -1.884 1.0000
## -0.0027392 0.00572587 Inf -0.478 1.0000
## 0.0011507 0.00522875 Inf 0.220 1.0000
## 0.0013337 0.00540561 Inf 0.247 1.0000
## -0.1735678 0.02664664 Inf -6.514 <.0001
## -0.0182848 0.00933742 Inf -1.958 1.0000
## 0.0000001 0.00538549 Inf 0.000 1.0000
## 0.0002290 0.00689904 Inf 0.033 1.0000
## 0.0013337 0.00648095 Inf 0.206 1.0000
## -0.0449274 0.01321199 Inf -3.401 0.8662
## -0.5785225 0.03297731 Inf -17.543 <.0001
## 0.0011787 0.00522672 Inf 0.226 1.0000
## 0.0006605 0.00548858 Inf 0.120 1.0000
## 0.0013337 0.00533696 Inf 0.250 1.0000
## 0.0013337 0.00544976 Inf 0.245 1.0000
## 0.0013337 0.00526523 Inf 0.253 1.0000
## 0.0013337 0.00648095 Inf 0.206 1.0000
## -0.0312627 0.02078718 Inf -1.504 1.0000
## 0.0013337 0.00533696 Inf 0.250 1.0000
## 0.0013337 0.00528605 Inf 0.252 1.0000
## 0.0013337 0.00521558 Inf 0.256 1.0000
## 0.0013337 0.00540561 Inf 0.247 1.0000
## 0.0013337 0.00533696 Inf 0.250 1.0000
## 0.0013337 0.00544976 Inf 0.245 1.0000
## 0.0013337 0.00526523 Inf 0.253 1.0000
## 0.0013337 0.00648095 Inf 0.206 1.0000
## -0.0503803 0.02780781 Inf -1.812 1.0000
## 0.0000109 0.00548147 Inf 0.002 1.0000
## 0.0013337 0.00528605 Inf 0.252 1.0000
## 0.0013337 0.00521558 Inf 0.256 1.0000
## 0.0013337 0.00540561 Inf 0.247 1.0000
## 0.2913197 0.06839114 Inf 4.260 0.1447
## 0.3034635 0.06817604 Inf 4.451 0.0733
## 0.3073534 0.06813679 Inf 4.511 0.0584
## 0.3075364 0.06815063 Inf 4.513 0.0580
## 0.1326349 0.07297132 Inf 1.818 1.0000
## 0.2879179 0.06857189 Inf 4.199 0.1763
## 0.3062028 0.06814878 Inf 4.493 0.0625
## 0.3064316 0.06828510 Inf 4.488 0.0639
## 0.3075364 0.06824434 Inf 4.506 0.0594
## 0.2612752 0.06920456 Inf 3.775 0.5257
## -0.2723198 0.07551968 Inf -3.606 0.6965
## 0.3073814 0.06813664 Inf 4.511 0.0583
## 0.3068632 0.06815713 Inf 4.502 0.0603
## 0.3075364 0.06814522 Inf 4.513 0.0579
## 0.3075364 0.06815414 Inf 4.512 0.0580
## 0.3075364 0.06813964 Inf 4.513 0.0578
## 0.3075364 0.06824434 Inf 4.506 0.0594
## 0.2749400 0.07104152 Inf 3.870 0.4313
## 0.3075364 0.06814522 Inf 4.513 0.0579
## 0.3075364 0.06814125 Inf 4.513 0.0578
## 0.3075364 0.06813582 Inf 4.514 0.0577
## 0.3075364 0.06815063 Inf 4.513 0.0580
## 0.3075364 0.06814522 Inf 4.513 0.0579
## 0.3075364 0.06815414 Inf 4.512 0.0580
## 0.3075364 0.06813964 Inf 4.513 0.0578
## 0.3075364 0.06824434 Inf 4.506 0.0594
## 0.2558223 0.07340279 Inf 3.485 0.8042
## 0.3062136 0.06815643 Inf 4.493 0.0626
## 0.3075364 0.06814125 Inf 4.513 0.0578
## 0.3075364 0.06813582 Inf 4.514 0.0577
## 0.3075364 0.06815063 Inf 4.513 0.0580
## 0.0121438 0.00679871 Inf 1.786 1.0000
## 0.0160337 0.00639709 Inf 2.506 1.0000
## 0.0162167 0.00654300 Inf 2.478 1.0000
## -0.1586847 0.02688582 Inf -5.902 0.0001
## -0.0034018 0.01001071 Inf -0.340 1.0000
## 0.0148831 0.00652235 Inf 2.282 1.0000
## 0.0151120 0.00781941 Inf 1.933 1.0000
## 0.0162167 0.00745607 Inf 2.175 1.0000
## -0.0300444 0.01368490 Inf -2.195 1.0000
## -0.5636395 0.03319262 Inf -16.981 <.0001
## 0.0160617 0.00639551 Inf 2.511 1.0000
## 0.0155435 0.00660968 Inf 2.352 1.0000
## 0.0162167 0.00648640 Inf 2.500 1.0000
## 0.0162167 0.00657952 Inf 2.465 1.0000
## 0.0162167 0.00642751 Inf 2.523 1.0000
## 0.0162167 0.00745607 Inf 2.175 1.0000
## -0.0163797 0.02109364 Inf -0.777 1.0000
## 0.0162167 0.00648640 Inf 2.500 1.0000
## 0.0162167 0.00644458 Inf 2.516 1.0000
## 0.0162167 0.00638690 Inf 2.539 1.0000
## 0.0162167 0.00654300 Inf 2.478 1.0000
## 0.0162167 0.00648640 Inf 2.500 1.0000
## 0.0162167 0.00657952 Inf 2.465 1.0000
## 0.0162167 0.00642751 Inf 2.523 1.0000
## 0.0162167 0.00745607 Inf 2.175 1.0000
## -0.0354973 0.02803507 Inf -1.266 1.0000
## 0.0148939 0.00660185 Inf 2.256 1.0000
## 0.0162167 0.00644458 Inf 2.516 1.0000
## 0.0162167 0.00638690 Inf 2.539 1.0000
## 0.0162167 0.00654300 Inf 2.478 1.0000
## 0.0038899 0.00335970 Inf 1.158 1.0000
## 0.0040729 0.00362905 Inf 1.122 1.0000
## -0.1708286 0.02634034 Inf -6.485 <.0001
## -0.0155456 0.00842664 Inf -1.845 1.0000
## 0.0027393 0.00359734 Inf 0.761 1.0000
## 0.0029682 0.00561571 Inf 0.529 1.0000
## 0.0040729 0.00509433 Inf 0.800 1.0000
## -0.0421882 0.01258202 Inf -3.353 0.8951
## -0.5757833 0.03273534 Inf -17.589 <.0001
## 0.0039179 0.00335658 Inf 1.167 1.0000
## 0.0033997 0.00375071 Inf 0.906 1.0000
## 0.0040729 0.00352598 Inf 1.155 1.0000
## 0.0040729 0.00369450 Inf 1.102 1.0000
## 0.0040729 0.00341644 Inf 1.192 1.0000
## 0.0040729 0.00509433 Inf 0.800 1.0000
## -0.0285235 0.02039323 Inf -1.399 1.0000
## 0.0040729 0.00352598 Inf 1.155 1.0000
## 0.0040729 0.00344845 Inf 1.181 1.0000
## 0.0040729 0.00333942 Inf 1.220 1.0000
## 0.0040729 0.00362905 Inf 1.122 1.0000
## 0.0040729 0.00352598 Inf 1.155 1.0000
## 0.0040729 0.00369450 Inf 1.102 1.0000
## 0.0040729 0.00341644 Inf 1.192 1.0000
## 0.0040729 0.00509433 Inf 0.800 1.0000
## -0.0476411 0.02751397 Inf -1.732 1.0000
## 0.0027501 0.00373951 Inf 0.735 1.0000
## 0.0040729 0.00344845 Inf 1.181 1.0000
## 0.0040729 0.00333942 Inf 1.220 1.0000
## 0.0040729 0.00362905 Inf 1.122 1.0000
## 0.0001830 0.00277612 Inf 0.066 1.0000
## -0.1747185 0.02624139 Inf -6.658 <.0001
## -0.0194355 0.00810750 Inf -2.397 1.0000
## -0.0011506 0.00273773 Inf -0.420 1.0000
## -0.0009218 0.00510760 Inf -0.180 1.0000
## 0.0001830 0.00452648 Inf 0.040 1.0000
## -0.0460782 0.01237466 Inf -3.724 0.5786
## -0.5796732 0.03264846 Inf -17.755 <.0001
## 0.0000279 0.00240947 Inf 0.012 1.0000
## -0.0004902 0.00293488 Inf -0.167 1.0000
## 0.0001830 0.00263996 Inf 0.069 1.0000
## 0.0001830 0.00286114 Inf 0.064 1.0000
## 0.0001830 0.00249177 Inf 0.073 1.0000
## 0.0001830 0.00452648 Inf 0.040 1.0000
## -0.0324134 0.02026501 Inf -1.599 1.0000
## 0.0001830 0.00263996 Inf 0.069 1.0000
## 0.0001830 0.00253547 Inf 0.072 1.0000
## 0.0001830 0.00238507 Inf 0.077 1.0000
## 0.0001830 0.00277612 Inf 0.066 1.0000
## 0.0001830 0.00263996 Inf 0.069 1.0000
## 0.0001830 0.00286114 Inf 0.064 1.0000
## 0.0001830 0.00249177 Inf 0.073 1.0000
## 0.0001830 0.00452648 Inf 0.040 1.0000
## -0.0515311 0.02741994 Inf -1.879 1.0000
## -0.0011398 0.00292200 Inf -0.390 1.0000
## 0.0001830 0.00253547 Inf 0.072 1.0000
## 0.0001830 0.00238507 Inf 0.077 1.0000
## 0.0001830 0.00277612 Inf 0.066 1.0000
## -0.1749015 0.02627743 Inf -6.656 <.0001
## -0.0196185 0.00822319 Inf -2.386 1.0000
## -0.0013336 0.00306201 Inf -0.436 1.0000
## -0.0011048 0.00528849 Inf -0.209 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0462612 0.01245097 Inf -3.715 0.5869
## -0.5798562 0.03267707 Inf -17.745 <.0001
## -0.0001551 0.00277227 Inf -0.056 1.0000
## -0.0006732 0.00323942 Inf -0.208 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0325964 0.02031165 Inf -1.605 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.1552830 0.02734105 Inf 5.679 0.0002
## 0.1735679 0.02627163 Inf 6.607 <.0001
## 0.1737967 0.02662343 Inf 6.528 <.0001
## 0.1749015 0.02651953 Inf 6.595 <.0001
## 0.1286403 0.02888583 Inf 4.453 0.0727
## -0.4049547 0.04183155 Inf -9.681 <.0001
## 0.1747464 0.02624102 Inf 6.659 <.0001
## 0.1742283 0.02629378 Inf 6.626 <.0001
## 0.1749015 0.02626340 Inf 6.660 <.0001
## 0.1749015 0.02628655 Inf 6.654 <.0001
## 0.1749015 0.02624892 Inf 6.663 <.0001
## 0.1749015 0.02651953 Inf 6.595 <.0001
## 0.1423051 0.03304742 Inf 4.306 0.1236
## 0.1749015 0.02626340 Inf 6.660 <.0001
## 0.1749015 0.02625310 Inf 6.662 <.0001
## 0.1749015 0.02623900 Inf 6.666 <.0001
## 0.1749015 0.02627743 Inf 6.656 <.0001
## 0.1749015 0.02626340 Inf 6.660 <.0001
## 0.1749015 0.02628655 Inf 6.654 <.0001
## 0.1749015 0.02624892 Inf 6.663 <.0001
## 0.1749015 0.02651953 Inf 6.595 <.0001
## 0.1231874 0.03785578 Inf 3.254 0.9416
## 0.1735787 0.02629149 Inf 6.602 <.0001
## 0.1749015 0.02625310 Inf 6.662 <.0001
## 0.1749015 0.02623900 Inf 6.666 <.0001
## 0.1749015 0.02627743 Inf 6.656 <.0001
## 0.0182849 0.00820626 Inf 2.228 1.0000
## 0.0185138 0.00927072 Inf 1.997 1.0000
## 0.0196185 0.00896677 Inf 2.188 1.0000
## -0.0266426 0.01455847 Inf -1.830 1.0000
## -0.5602377 0.03356581 Inf -16.691 <.0001
## 0.0194635 0.00810627 Inf 2.401 1.0000
## 0.0189453 0.00827609 Inf 2.289 1.0000
## 0.0196185 0.00817823 Inf 2.399 1.0000
## 0.0196185 0.00825228 Inf 2.377 1.0000
## 0.0196185 0.00813160 Inf 2.413 1.0000
## 0.0196185 0.00896677 Inf 2.188 1.0000
## -0.0129779 0.02167100 Inf -0.599 1.0000
## 0.0196185 0.00817823 Inf 2.399 1.0000
## 0.0196185 0.00814510 Inf 2.409 1.0000
## 0.0196185 0.00809954 Inf 2.422 1.0000
## 0.0196185 0.00822319 Inf 2.386 1.0000
## 0.0196185 0.00817823 Inf 2.399 1.0000
## 0.0196185 0.00825228 Inf 2.377 1.0000
## 0.0196185 0.00813160 Inf 2.413 1.0000
## 0.0196185 0.00896677 Inf 2.188 1.0000
## -0.0320955 0.02847162 Inf -1.127 1.0000
## 0.0182957 0.00826959 Inf 2.212 1.0000
## 0.0196185 0.00814510 Inf 2.409 1.0000
## 0.0196185 0.00809954 Inf 2.422 1.0000
## 0.0196185 0.00822319 Inf 2.386 1.0000
## 0.0002288 0.00526803 Inf 0.043 1.0000
## 0.0013336 0.00470724 Inf 0.283 1.0000
## -0.0449275 0.01243833 Inf -3.612 0.6906
## -0.5785226 0.03267504 Inf -17.705 <.0001
## 0.0011786 0.00273385 Inf 0.431 1.0000
## 0.0006604 0.00320622 Inf 0.206 1.0000
## 0.0013336 0.00293912 Inf 0.454 1.0000
## 0.0013336 0.00313930 Inf 0.425 1.0000
## 0.0013336 0.00280677 Inf 0.475 1.0000
## 0.0013336 0.00470724 Inf 0.283 1.0000
## -0.0312628 0.02030424 Inf -1.540 1.0000
## 0.0013336 0.00293912 Inf 0.454 1.0000
## 0.0013336 0.00284564 Inf 0.469 1.0000
## 0.0013336 0.00271250 Inf 0.492 1.0000
## 0.0013336 0.00306201 Inf 0.436 1.0000
## 0.0013336 0.00293912 Inf 0.454 1.0000
## 0.0013336 0.00313930 Inf 0.425 1.0000
## 0.0013336 0.00280677 Inf 0.475 1.0000
## 0.0013336 0.00470724 Inf 0.283 1.0000
## -0.0503804 0.02744867 Inf -1.835 1.0000
## 0.0000108 0.00319402 Inf 0.003 1.0000
## 0.0013336 0.00284564 Inf 0.469 1.0000
## 0.0013336 0.00271250 Inf 0.492 1.0000
## 0.0013336 0.00306201 Inf 0.436 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0451564 0.01316517 Inf -3.430 0.8461
## -0.5787514 0.03295812 Inf -17.560 <.0001
## 0.0009497 0.00510552 Inf 0.186 1.0000
## 0.0004316 0.00537333 Inf 0.080 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00533362 Inf 0.207 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0314916 0.02075740 Inf -1.517 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## 0.0011048 0.00521831 Inf 0.212 1.0000
## 0.0011048 0.00533362 Inf 0.207 1.0000
## 0.0011048 0.00514492 Inf 0.215 1.0000
## 0.0011048 0.00638360 Inf 0.173 1.0000
## -0.0506093 0.02778561 Inf -1.821 1.0000
## -0.0002180 0.00536611 Inf -0.041 1.0000
## 0.0011048 0.00516623 Inf 0.214 1.0000
## 0.0011048 0.00509411 Inf 0.217 1.0000
## 0.0011048 0.00528849 Inf 0.209 1.0000
## -0.0462612 0.01295411 Inf -3.571 0.7294
## -0.5798562 0.03287207 Inf -17.640 <.0001
## -0.0001551 0.00452412 Inf -0.034 1.0000
## -0.0006732 0.00482452 Inf -0.140 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.5335951 0.03485006 Inf -15.311 <.0001
## 0.0461061 0.01237389 Inf 3.726 0.5761
## 0.0455879 0.01248522 Inf 3.651 0.6519
## 0.0462612 0.01242132 Inf 3.724 0.5779
## 0.0462612 0.01247021 Inf 3.710 0.5928
## 0.0462612 0.01239067 Inf 3.734 0.5684
## 0.0462612 0.01295411 Inf 3.571 0.7294
## 0.0136648 0.02359051 Inf 0.579 1.0000
## 0.0462612 0.01242132 Inf 3.724 0.5779
## 0.0462612 0.01239954 Inf 3.731 0.5712
## 0.0462612 0.01236966 Inf 3.740 0.5619
## 0.0462612 0.01245097 Inf 3.715 0.5869
## 0.0462612 0.01242132 Inf 3.724 0.5779
## 0.0462612 0.01247021 Inf 3.710 0.5928
## 0.0462612 0.01239067 Inf 3.734 0.5684
## 0.0462612 0.01295411 Inf 3.571 0.7294
## -0.0054529 0.02995684 Inf -0.182 1.0000
## 0.0449384 0.01248021 Inf 3.601 0.7015
## 0.0462612 0.01239954 Inf 3.731 0.5712
## 0.0462612 0.01236966 Inf 3.740 0.5619
## 0.0462612 0.01245097 Inf 3.715 0.5869
## 0.5797012 0.03264811 Inf 17.756 <.0001
## 0.5791830 0.03269156 Inf 17.717 <.0001
## 0.5798562 0.03266578 Inf 17.751 <.0001
## 0.5798562 0.03268440 Inf 17.741 <.0001
## 0.5798562 0.03265414 Inf 17.758 <.0001
## 0.5798562 0.03287207 Inf 17.640 <.0001
## 0.5472598 0.03836524 Inf 14.264 <.0001
## 0.5798562 0.03266578 Inf 17.751 <.0001
## 0.5798562 0.03265751 Inf 17.756 <.0001
## 0.5798562 0.03264617 Inf 17.762 <.0001
## 0.5798562 0.03267707 Inf 17.745 <.0001
## 0.5798562 0.03266578 Inf 17.751 <.0001
## 0.5798562 0.03268440 Inf 17.741 <.0001
## 0.5798562 0.03265414 Inf 17.758 <.0001
## 0.5798562 0.03287207 Inf 17.640 <.0001
## 0.5281422 0.04258276 Inf 12.403 <.0001
## 0.5785334 0.03269099 Inf 17.697 <.0001
## 0.5798562 0.03265751 Inf 17.756 <.0001
## 0.5798562 0.03264617 Inf 17.762 <.0001
## 0.5798562 0.03267707 Inf 17.745 <.0001
## -0.0005182 0.00293126 Inf -0.177 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00285741 Inf 0.054 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0324414 0.02026453 Inf -1.601 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## 0.0001551 0.00263591 Inf 0.059 1.0000
## 0.0001551 0.00285741 Inf 0.054 1.0000
## 0.0001551 0.00248748 Inf 0.062 1.0000
## 0.0001551 0.00452412 Inf 0.034 1.0000
## -0.0515590 0.02741959 Inf -1.880 1.0000
## -0.0011677 0.00291837 Inf -0.400 1.0000
## 0.0001551 0.00253125 Inf 0.061 1.0000
## 0.0001551 0.00238059 Inf 0.065 1.0000
## 0.0001551 0.00277227 Inf 0.056 1.0000
## 0.0006732 0.00312352 Inf 0.216 1.0000
## 0.0006732 0.00331258 Inf 0.203 1.0000
## 0.0006732 0.00299932 Inf 0.224 1.0000
## 0.0006732 0.00482452 Inf 0.140 1.0000
## -0.0319232 0.02033283 Inf -1.570 1.0000
## 0.0006732 0.00312352 Inf 0.216 1.0000
## 0.0006732 0.00303572 Inf 0.222 1.0000
## 0.0006732 0.00291129 Inf 0.231 1.0000
## 0.0006732 0.00323942 Inf 0.208 1.0000
## 0.0006732 0.00312352 Inf 0.216 1.0000
## 0.0006732 0.00331258 Inf 0.203 1.0000
## 0.0006732 0.00299932 Inf 0.224 1.0000
## 0.0006732 0.00482452 Inf 0.140 1.0000
## -0.0510408 0.02746999 Inf -1.858 1.0000
## -0.0006496 0.00336493 Inf -0.193 1.0000
## 0.0006732 0.00303572 Inf 0.222 1.0000
## 0.0006732 0.00291129 Inf 0.231 1.0000
## 0.0006732 0.00323942 Inf 0.208 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0325964 0.02029349 Inf -1.606 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0325964 0.02032344 Inf -1.604 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00324736 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0325964 0.02027474 Inf -1.608 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00256726 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0325964 0.02062390 Inf -1.581 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## 0.0000000 0.00592883 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0325964 0.02029349 Inf 1.606 1.0000
## 0.0325964 0.02028016 Inf 1.607 1.0000
## 0.0325964 0.02026191 Inf 1.609 1.0000
## 0.0325964 0.02031165 Inf 1.605 1.0000
## 0.0325964 0.02029349 Inf 1.606 1.0000
## 0.0325964 0.02032344 Inf 1.604 1.0000
## 0.0325964 0.02027474 Inf 1.608 1.0000
## 0.0325964 0.02062390 Inf 1.581 1.0000
## -0.0191177 0.03398798 Inf -0.562 1.0000
## 0.0312736 0.02032992 Inf 1.538 1.0000
## 0.0325964 0.02028016 Inf 1.607 1.0000
## 0.0325964 0.02026191 Inf 1.609 1.0000
## 0.0325964 0.02031165 Inf 1.605 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00284812 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## -0.0517141 0.02743118 Inf -1.885 1.0000
## -0.0013228 0.00302334 Inf -0.438 1.0000
## 0.0000000 0.00265146 Inf 0.000 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## -0.0517141 0.02741769 Inf -1.886 1.0000
## -0.0013228 0.00289837 Inf -0.456 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00235588 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## -0.0517141 0.02745447 Inf -1.884 1.0000
## -0.0013228 0.00322782 Inf -0.410 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
## 0.0000000 0.00309623 Inf 0.000 1.0000
## 0.0000000 0.00305427 Inf 0.000 1.0000
## 0.0000000 0.00271133 Inf 0.000 1.0000
## 0.0000000 0.00465096 Inf 0.000 1.0000
## -0.0517141 0.02744104 Inf -1.885 1.0000
## -0.0013228 0.00311149 Inf -0.425 1.0000
## 0.0000000 0.00275155 Inf 0.000 1.0000
## 0.0000000 0.00261361 Inf 0.000 1.0000
## 0.0000000 0.00297476 Inf 0.000 1.0000
## 0.0000000 0.00292713 Inf 0.000 1.0000
## 0.0000000 0.00477998 Inf 0.000 1.0000
## -0.0517141 0.02746320 Inf -1.883 1.0000
## -0.0013228 0.00330123 Inf -0.401 1.0000
## 0.0000000 0.00296442 Inf 0.000 1.0000
## 0.0000000 0.00283686 Inf 0.000 1.0000
## 0.0000000 0.00317269 Inf 0.000 1.0000
## 0.0000000 0.00456847 Inf 0.000 1.0000
## -0.0517141 0.02742718 Inf -1.886 1.0000
## -0.0013228 0.00298679 Inf -0.443 1.0000
## 0.0000000 0.00260970 Inf 0.000 1.0000
## 0.0000000 0.00246384 Inf 0.000 1.0000
## 0.0000000 0.00284407 Inf 0.000 1.0000
## -0.0517141 0.02768628 Inf -1.868 1.0000
## -0.0013228 0.00481674 Inf -0.275 1.0000
## 0.0000000 0.00459246 Inf 0.000 1.0000
## 0.0000000 0.00451117 Inf 0.000 1.0000
## 0.0000000 0.00472957 Inf 0.000 1.0000
## 0.0503913 0.02746768 Inf 1.835 1.0000
## 0.0517141 0.02743118 Inf 1.885 1.0000
## 0.0517141 0.02741769 Inf 1.886 1.0000
## 0.0517141 0.02745447 Inf 1.884 1.0000
## 0.0013228 0.00302334 Inf 0.438 1.0000
## 0.0013228 0.00289837 Inf 0.456 1.0000
## 0.0013228 0.00322782 Inf 0.410 1.0000
## 0.0000000 0.00250803 Inf 0.000 1.0000
## 0.0000000 0.00288244 Inf 0.000 1.0000
## 0.0000000 0.00275108 Inf 0.000 1.0000
##
## P value adjustment: tukey method for comparing a family of 180 estimates
cld(Proc_marginal, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment Genus emmean SE df
## Week 0 Aeromonas 0.0000000 0.00000000 Inf
## Artemia/Week 2 Chryseobacterium 0.0073191 0.00232373 Inf
## Zooplankton/Week 2 Collimonas 0.0073191 0.00190845 Inf
## Artemia/Week 4 Domibacillus 0.0073191 0.00420745 Inf
## Zooplankton/Week 4 Escherichia/Shigella 0.0073191 0.00221820 Inf
## Zooplankton/Week 4 Exiguobacterium 0.0073191 0.00221820 Inf
## Artemia/Week 4 Janthinobacterium 0.0073191 0.00420745 Inf
## Zooplankton/Week 1 Methyloversatilis 0.0073191 0.00204523 Inf
## Zooplankton/Week 2 Methyloversatilis 0.0073191 0.00190845 Inf
## Zooplankton/Week 1 Sphingobacterium 0.0073191 0.00204523 Inf
## Zooplankton/Week 4 Undibacterium 0.0073191 0.00221820 Inf
## Artemia/Week 2 Acidovorax 0.0073191 0.00232373 Inf
## Artemia/Week 4 Acidovorax 0.0073191 0.00420745 Inf
## Zooplankton/Week 3 Acidovorax 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Acidovorax 0.0073191 0.00221820 Inf
## Artemia/Week 4 Aeromonas 0.0073191 0.00420745 Inf
## Artemia/Week 4 Cedecea 0.0073191 0.00420745 Inf
## Zooplankton/Week 2 Cedecea 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Cedecea 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Cedecea 0.0073191 0.00221820 Inf
## Artemia/Week 4 Chryseobacterium 0.0073191 0.00420745 Inf
## Zooplankton/Week 3 Chryseobacterium 0.0073191 0.00170357 Inf
## Artemia/Week 4 Chryseomicrobium 0.0073191 0.00420745 Inf
## Week 0 Chryseomicrobium 0.0073191 0.00420745 Inf
## Zooplankton/Week 1 Chryseomicrobium 0.0073191 0.00204523 Inf
## Zooplankton/Week 2 Chryseomicrobium 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Chryseomicrobium 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Chryseomicrobium 0.0073191 0.00221820 Inf
## Artemia/Week 1 Clostridium_sensu_stricto_1 0.0073191 0.00204523 Inf
## Artemia/Week 2 Clostridium_sensu_stricto_1 0.0073191 0.00232373 Inf
## Artemia/Week 4 Clostridium_sensu_stricto_1 0.0073191 0.00420745 Inf
## Week 0 Clostridium_sensu_stricto_1 0.0073191 0.00420745 Inf
## Zooplankton/Week 3 Clostridium_sensu_stricto_1 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Clostridium_sensu_stricto_1 0.0073191 0.00221820 Inf
## Artemia/Week 1 Collimonas 0.0073191 0.00204523 Inf
## Artemia/Week 2 Collimonas 0.0073191 0.00232373 Inf
## Artemia/Week 3 Collimonas 0.0073191 0.00185000 Inf
## Artemia/Week 4 Collimonas 0.0073191 0.00420745 Inf
## Zooplankton/Week 4 Collimonas 0.0073191 0.00221820 Inf
## Artemia/Week 4 Deefgea 0.0073191 0.00420745 Inf
## Zooplankton/Week 3 Deefgea 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Deefgea 0.0073191 0.00221820 Inf
## Week 0 Domibacillus 0.0073191 0.00420745 Inf
## Zooplankton/Week 2 Domibacillus 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Domibacillus 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Domibacillus 0.0073191 0.00221820 Inf
## Artemia/Week 4 Enterobacter 0.0073191 0.00420745 Inf
## Week 0 Enterobacter 0.0073191 0.00420745 Inf
## Zooplankton/Week 2 Enterobacter 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Enterobacter 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Enterobacter 0.0073191 0.00221820 Inf
## Artemia/Week 4 Escherichia/Shigella 0.0073191 0.00420745 Inf
## Zooplankton/Week 2 Escherichia/Shigella 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Escherichia/Shigella 0.0073191 0.00170357 Inf
## Artemia/Week 4 Exiguobacterium 0.0073191 0.00420745 Inf
## Week 0 Exiguobacterium 0.0073191 0.00420745 Inf
## Artemia/Week 2 Janthinobacterium 0.0073191 0.00232373 Inf
## Zooplankton/Week 2 Janthinobacterium 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Janthinobacterium 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Janthinobacterium 0.0073191 0.00221820 Inf
## Week 0 Lelliottia 0.0073191 0.00420745 Inf
## Artemia/Week 1 Methyloversatilis 0.0073191 0.00204523 Inf
## Artemia/Week 2 Methyloversatilis 0.0073191 0.00232373 Inf
## Artemia/Week 3 Methyloversatilis 0.0073191 0.00185000 Inf
## Artemia/Week 4 Methyloversatilis 0.0073191 0.00420745 Inf
## Zooplankton/Week 3 Methyloversatilis 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Methyloversatilis 0.0073191 0.00221820 Inf
## Zooplankton/Week 4 Pseudomonas 0.0073191 0.00221820 Inf
## Week 0 Shewanella 0.0073191 0.00420745 Inf
## Artemia/Week 1 Sphingobacterium 0.0073191 0.00204523 Inf
## Artemia/Week 2 Sphingobacterium 0.0073191 0.00232373 Inf
## Artemia/Week 4 Sphingobacterium 0.0073191 0.00420745 Inf
## Zooplankton/Week 2 Sphingobacterium 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Sphingobacterium 0.0073191 0.00170357 Inf
## Zooplankton/Week 4 Sphingobacterium 0.0073191 0.00221820 Inf
## Artemia/Week 1 Undibacterium 0.0073191 0.00204523 Inf
## Artemia/Week 2 Undibacterium 0.0073191 0.00232373 Inf
## Artemia/Week 3 Undibacterium 0.0073191 0.00185000 Inf
## Artemia/Week 4 Undibacterium 0.0073191 0.00420745 Inf
## Zooplankton/Week 2 Undibacterium 0.0073191 0.00190845 Inf
## Zooplankton/Week 3 Undibacterium 0.0073191 0.00170357 Inf
## Week 0 Cedecea 0.0073191 0.00420745 Inf
## Artemia/Week 3 Chryseobacterium 0.0073191 0.00185000 Inf
## Artemia/Week 3 Chryseomicrobium 0.0073191 0.00185000 Inf
## Artemia/Week 3 Deefgea 0.0073191 0.00185000 Inf
## Artemia/Week 3 Domibacillus 0.0073191 0.00185000 Inf
## Artemia/Week 3 Escherichia/Shigella 0.0073191 0.00185000 Inf
## Artemia/Week 3 Exiguobacterium 0.0073191 0.00185000 Inf
## Zooplankton/Week 3 Exiguobacterium 0.0073191 0.00170357 Inf
## Artemia/Week 3 Sphingobacterium 0.0073191 0.00185000 Inf
## Week 0 Escherichia/Shigella 0.0073191 0.00420745 Inf
## Zooplankton/Week 3 Collimonas 0.0074741 0.00173895 Inf
## Zooplankton/Week 3 Shewanella 0.0074741 0.00173895 Inf
## Zooplankton/Week 3 Pseudomonas 0.0075021 0.00174533 Inf
## Artemia/Week 3 Acidovorax 0.0075039 0.00189583 Inf
## Artemia/Week 3 Clostridium_sensu_stricto_1 0.0075039 0.00189583 Inf
## Artemia/Week 3 Janthinobacterium 0.0075374 0.00190412 Inf
## Zooplankton/Week 1 Collimonas 0.0075479 0.00210799 Inf
## Artemia/Week 1 Chryseobacterium 0.0075479 0.00210799 Inf
## Zooplankton/Week 2 Acidovorax 0.0075524 0.00196814 Inf
## Zooplankton/Week 2 Exiguobacterium 0.0075737 0.00197357 Inf
## Zooplankton/Week 2 Lelliottia 0.0075737 0.00197357 Inf
## Zooplankton/Week 4 Lelliottia 0.0076409 0.00231395 Inf
## Zooplankton/Week 1 Domibacillus 0.0076459 0.00213484 Inf
## Zooplankton/Week 4 Aeromonas 0.0076706 0.00232277 Inf
## Artemia/Week 1 Acidovorax 0.0076953 0.00214835 Inf
## Zooplankton/Week 1 Cedecea 0.0077948 0.00217559 Inf
## Zooplankton/Week 3 Lelliottia 0.0078349 0.00182114 Inf
## Artemia/Week 1 Plesiomonas 0.0078620 0.00219399 Inf
## Zooplankton/Week 1 Enterobacter 0.0078733 0.00219706 Inf
## Artemia/Week 2 Plesiomonas 0.0079448 0.00251862 Inf
## Zooplankton/Week 1 Escherichia/Shigella 0.0079599 0.00222074 Inf
## Zooplankton/Week 4 Chryseobacterium 0.0079694 0.00241147 Inf
## Zooplankton/Week 4 Shewanella 0.0079923 0.00241826 Inf
## Week 0 Deefgea 0.0084239 0.00483065 Inf
## Artemia/Week 4 Shewanella 0.0084239 0.00483065 Inf
## Zooplankton/Week 3 Aeromonas 0.0085739 0.00198881 Inf
## Zooplankton/Week 1 Undibacterium 0.0086419 0.00240671 Inf
## Artemia/Week 3 Shewanella 0.0086527 0.00217936 Inf
## Artemia/Week 4 Pseudomonas 0.0086528 0.00495927 Inf
## Zooplankton/Week 1 Janthinobacterium 0.0088071 0.00245162 Inf
## Zooplankton/Week 1 Acidovorax 0.0088891 0.00247391 Inf
## Zooplankton/Week 1 Lelliottia 0.0088971 0.00247606 Inf
## Zooplankton/Week 2 Chryseobacterium 0.0089290 0.00231834 Inf
## Artemia/Week 3 Cedecea 0.0090526 0.00227752 Inf
## Artemia/Week 3 Pseudomonas 0.0091852 0.00231001 Inf
## Artemia/Week 1 Janthinobacterium 0.0093506 0.00259900 Inf
## Artemia/Week 3 Plesiomonas 0.0093891 0.00235990 Inf
## Artemia/Week 3 Enterobacter 0.0097703 0.00245296 Inf
## Artemia/Week 1 Deefgea 0.0100092 0.00277680 Inf
## Zooplankton/Week 1 Exiguobacterium 0.0106234 0.00294183 Inf
## Zooplankton/Week 1 Plesiomonas 0.0106658 0.00295318 Inf
## Zooplankton/Week 1 Chryseobacterium 0.0110446 0.00305451 Inf
## Zooplankton/Week 2 Pseudomonas 0.0113920 0.00293601 Inf
## Artemia/Week 2 Chryseomicrobium 0.0115710 0.00363125 Inf
## Artemia/Week 2 Exiguobacterium 0.0116990 0.00366996 Inf
## Artemia/Week 1 Lelliottia 0.0120909 0.00333281 Inf
## Artemia/Week 4 Plesiomonas 0.0127635 0.00723315 Inf
## Week 0 Plesiomonas 0.0129725 0.00734684 Inf
## Artemia/Week 2 Domibacillus 0.0168430 0.00519063 Inf
## Artemia/Week 1 Cedecea 0.0211092 0.00562427 Inf
## Artemia/Week 2 Deefgea 0.0213167 0.00645416 Inf
## Zooplankton/Week 1 Pseudomonas 0.0235358 0.00620639 Inf
## Zooplankton/Week 2 Plesiomonas 0.0236607 0.00581433 Inf
## Artemia/Week 2 Pseudomonas 0.0265813 0.00786840 Inf
## Artemia/Week 2 Shewanella 0.0269376 0.00796129 Inf
## Week 0 Collimonas 0.0280837 0.01500205 Inf
## Artemia/Week 1 Pseudomonas 0.0303815 0.00776959 Inf
## Artemia/Week 1 Enterobacter 0.0308353 0.00786917 Inf
## Zooplankton/Week 1 Clostridium_sensu_stricto_1 0.0369923 0.00917287 Inf
## Artemia/Week 3 Aeromonas 0.0381862 0.00850160 Inf
## Week 0 Sphingobacterium 0.0399155 0.02021065 Inf
## Artemia/Week 2 Cedecea 0.0407175 0.01129305 Inf
## Artemia/Week 1 Domibacillus 0.0451142 0.01076585 Inf
## Zooplankton/Week 2 Deefgea 0.0495157 0.01078465 Inf
## Week 0 Janthinobacterium 0.0500605 0.02418759 Inf
## Zooplankton/Week 1 Shewanella 0.0535803 0.01228907 Inf
## Zooplankton/Week 2 Clostridium_sensu_stricto_1 0.0539968 0.01151677 Inf
## Week 0 Undibacterium 0.0590332 0.02738183 Inf
## Artemia/Week 1 Chryseomicrobium 0.0611730 0.01355043 Inf
## Week 0 Methyloversatilis 0.0628562 0.02866129 Inf
## Artemia/Week 2 Enterobacter 0.0714103 0.01721775 Inf
## Artemia/Week 2 Escherichia/Shigella 0.0777383 0.01824278 Inf
## Zooplankton/Week 1 Deefgea 0.0850684 0.01699625 Inf
## Artemia/Week 1 Exiguobacterium 0.0860049 0.01711762 Inf
## Artemia/Week 2 Lelliottia 0.0910078 0.02022510 Inf
## Week 0 Chryseobacterium 0.1171259 0.04301866 Inf
## Artemia/Week 1 Escherichia/Shigella 0.1513211 0.02385555 Inf
## Zooplankton/Week 2 Aeromonas 0.1805147 0.02428397 Inf
## Artemia/Week 1 Shewanella 0.1822206 0.02619989 Inf
## Week 0 Acidovorax 0.2446880 0.06215738 Inf
## Week 0 Pseudomonas 0.3148555 0.06811829 Inf
## Artemia/Week 1 Aeromonas 0.3886142 0.03461434 Inf
## Zooplankton/Week 2 Shewanella 0.5871753 0.03259795 Inf
## Artemia/Week 2 Aeromonas 0.6291262 0.03905508 Inf
## Zooplankton/Week 1 Aeromonas 0.6902198 0.03255990 Inf
## Artemia/Week 3 Lelliottia 0.9206641 0.01464416 Inf
## Artemia/Week 4 Lelliottia 0.9817538 0.01014781 Inf
## Zooplankton/Week 4 Plesiomonas 0.9852332 0.00437617 Inf
## Zooplankton/Week 3 Plesiomonas 0.9853663 0.00332680 Inf
## asymp.LCL asymp.UCL .group
## 0.0000000 0.0000000 a
## -0.0011129 0.0157511 abc
## 0.0003940 0.0142441 ab
## -0.0079482 0.0225864 abcd
## -0.0007300 0.0153681 abc
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## -0.0001023 0.0147405 abc
## 0.0003940 0.0142441 ab
## -0.0001023 0.0147405 abc
## -0.0007300 0.0153681 abc
## -0.0011129 0.0157511 abc
## -0.0079482 0.0225864 abcd
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## -0.0079482 0.0225864 abcd
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## 0.0011374 0.0135007 ab
## -0.0079482 0.0225864 abcd
## -0.0079482 0.0225864 abcd
## -0.0001023 0.0147405 abc
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0001023 0.0147405 abc
## -0.0011129 0.0157511 abc
## -0.0079482 0.0225864 abcd
## -0.0079482 0.0225864 abcd
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0001023 0.0147405 abc
## -0.0011129 0.0157511 abc
## 0.0006061 0.0140320 ab
## -0.0079482 0.0225864 abcd
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## -0.0079482 0.0225864 abcd
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0079482 0.0225864 abcd
## -0.0079482 0.0225864 abcd
## -0.0011129 0.0157511 abc
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## -0.0001023 0.0147405 abc
## -0.0011129 0.0157511 abc
## 0.0006061 0.0140320 ab
## -0.0079482 0.0225864 abcd
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0007300 0.0153681 abc
## -0.0079482 0.0225864 abcd
## -0.0001023 0.0147405 abc
## -0.0011129 0.0157511 abc
## -0.0079482 0.0225864 abcd
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0007300 0.0153681 abc
## -0.0001023 0.0147405 abc
## -0.0011129 0.0157511 abc
## 0.0006061 0.0140320 ab
## -0.0079482 0.0225864 abcd
## 0.0003940 0.0142441 ab
## 0.0011374 0.0135007 ab
## -0.0079482 0.0225864 abcd
## 0.0006061 0.0140320 ab
## 0.0006061 0.0140320 ab
## 0.0006061 0.0140320 ab
## 0.0006061 0.0140320 ab
## 0.0006061 0.0140320 ab
## 0.0006061 0.0140320 ab
## 0.0011374 0.0135007 ab
## 0.0006061 0.0140320 ab
## -0.0079482 0.0225864 abcd
## 0.0011641 0.0137842 abc
## 0.0011641 0.0137842 abc
## 0.0011689 0.0138352 abc
## 0.0006247 0.0143832 abc
## 0.0006247 0.0143832 abc
## 0.0006280 0.0144468 abc
## -0.0001012 0.0151970 abc
## -0.0001012 0.0151970 abc
## 0.0004108 0.0146941 abc
## 0.0004123 0.0147350 abc
## 0.0004123 0.0147350 abc
## -0.0007556 0.0160374 abcd
## -0.0001006 0.0153925 abc
## -0.0007579 0.0160991 abcd
## -0.0001003 0.0154908 abcd
## -0.0000997 0.0156892 abcd
## 0.0012267 0.0144432 abcd
## -0.0000992 0.0158232 abcd
## -0.0000991 0.0158456 abcd
## -0.0011943 0.0170840 abcd
## -0.0000984 0.0160181 abcd
## -0.0007810 0.0167197 abcd
## -0.0007827 0.0167673 abcd
## -0.0091048 0.0259525 abcd
## -0.0091048 0.0259525 abcd
## 0.0013573 0.0157906 abcd
## -0.0000912 0.0173750 abcd
## 0.0007446 0.0165608 abcd
## -0.0093426 0.0266482 abcd
## -0.0000889 0.0177031 abcd
## -0.0000878 0.0178661 abcd
## -0.0000876 0.0178818 abcd
## 0.0005166 0.0173415 abcd
## 0.0007883 0.0173169 abcd
## 0.0008030 0.0175674 abcd
## -0.0000802 0.0187814 abcd
## 0.0008259 0.0179523 abcd
## 0.0008694 0.0186712 abcd
## -0.0000668 0.0200852 abcd
## -0.0000514 0.0212982 abcd
## -0.0000502 0.0213818 abcd
## -0.0000391 0.0221283 abcd
## 0.0007383 0.0220457 abcd
## -0.0016054 0.0247475 abcd
## -0.0016179 0.0250160 abcd
## -0.0000027 0.0241844 abcd
## -0.0134830 0.0390100 abcd
## -0.0136865 0.0396315 abcd
## -0.0019919 0.0356779 abcd
## 0.0007008 0.0415176 abcd
## -0.0021031 0.0447365 abcd
## 0.0010151 0.0460566 abcd
## 0.0025626 0.0447587 abcd
## -0.0019703 0.0551329 abcd
## -0.0019510 0.0558263 abcd
## -0.0263532 0.0825207 abcde
## 0.0021885 0.0585746 abcd
## 0.0022810 0.0593897 abcd
## 0.0037072 0.0702773 abcde
## 0.0073370 0.0690354 abcde
## -0.0334216 0.1132526 abcdefg
## -0.0002608 0.0816959 abcde
## 0.0060489 0.0841796 abcde
## 0.0103821 0.0886493 bcde
## -0.0377075 0.1378284 abcdefg
## 0.0089877 0.0981728 abcdef
## 0.0122066 0.0957869 bcdef
## -0.0403256 0.1583919 abcdefg
## 0.0120034 0.1103426 abcdefg
## -0.0411452 0.1668577 abcdefg
## 0.0089333 0.1338873 abcdefg
## 0.0115419 0.1439347 abcdefg
## 0.0233952 0.1467416 cdefg
## 0.0238913 0.1481185 defg
## 0.0176182 0.1643973 abcdefg
## -0.0389732 0.2732250 abcdefg
## 0.0647580 0.2378842 efg
## 0.0923970 0.2686323 g
## 0.0871507 0.2772905 fg
## 0.0191414 0.4702345 abcdefgh
## 0.0676790 0.5620320 bcdefghij
## 0.2630113 0.5142170 hi
## 0.4688892 0.7054614 ijk
## 0.4874096 0.7708429 jk
## 0.5720718 0.8083679 k
## 0.8675258 0.9738025 l
## 0.9449311 1.0185765 l
## 0.9693536 1.0011127 l
## 0.9732945 0.9974380 l
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 180 estimates
## P value adjustment: tukey method for comparing a family of 180 estimates
## significance level used: alpha = 0.05
Determining significant effects on Core bacteria abundances between locations: ALL(+Contaminates)
CH_2_Fish_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/ASV_Combined_CH_2_NORMAL_C.csv", header=TRUE, check.names=FALSE, row.names = 1)
CH_2_Fish_C<-as.matrix(CH_2_Fish_C)
CH_2_Fish_C_otu<-otu_table(CH_2_Fish_C, taxa_are_rows = TRUE)
CH_2_Fish_C_metadata<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/CH_2_Fish_Metadata_C.csv", header=TRUE, check.names=FALSE, row.names = 1)
CH_2_Fish_C_metadata<-sample_data(CH_2_Fish_C_metadata)
CH_2_Fish_C_Phylo<-phyloseq(CH_2_Fish_C_otu,CH_2_taxa_Phylo_C, CH_2_Fish_C_metadata)
CH_2_FishCore_C_melt_transform<-transform_sample_counts(CH_2_Fish_C_Phylo, function(CH_2_Fish_C_otu) CH_2_Fish_C_otu/sum(CH_2_Fish_C_otu))
CH_2_FishCore_melted_C<-psmelt(CH_2_FishCore_C_melt_transform)
CH_2_FishCore_melted_C_cut<-subset(CH_2_FishCore_melted_C, Genus == "Acidovorax" | Genus == "Chryseobacterium" | Genus =="Collimonas" | Genus == "Janthinobacterium" | Genus == "Methyloversatilis" | Genus == "Pseudomonas" | Genus =="Sphingobacterium" | Genus == "Undibacterium" | Genus == "Aeromonas"| Genus == "Clostridium_sensu_stricto_1" | Genus == "Deefgea" | Genus == "Shewanella" | Genus == "Plesiomonas" | Genus == "Chryseomicrobium" | Genus == "Domibacillus"| Genus == "Enterobacter" | Genus == "Escherichia/Shigella" | Genus == "Exiguobacterium" | Genus == "Cedecea" | Genus == "Lelliottia")
CH_2_FishCore_melted_C_cut<-CH_2_FishCore_melted_C_cut[order(CH_2_FishCore_melted_C_cut$Sample, CH_2_FishCore_melted_C_cut$Genus),]
write.csv(CH_2_FishCore_melted_C_cut, "CH_2_FishCore_melted_C_cut.csv")
CH_2_FishCore_melted_C_cut<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/CH_2_FishCore_melted_C_cut.csv", header=TRUE, check.names = FALSE)
#Offloading/Reloading data removes extraneous factors in `Genus` column which will produce an error when running the beta regression function below
#Note when offloading data change the values = 1 to 0.9999999 (beta distribution can't deal with values at exactly 1)
#Determine Fit of Distribution
hist(CH_2_FishCore_melted_C_cut$Abundance)
#Based on numbers being between 0-1, we tried beta distribution
CH_2_Fish_Core_C_Abundance<-CH_2_FishCore_melted_C_cut$Abundance
CH_2_Fish_Core_C_Abundance_scaled<-(CH_2_Fish_Core_C_Abundance-min(CH_2_Fish_Core_C_Abundance) + 0.000001/max(CH_2_Fish_Core_C_Abundance) + 0.000002)
#Note 0.00000001 and 0.00000002 are needed to fit beta distribution given the functions default log fit
CH_2_Fish_Core_C_fitbeta<-fitdist(CH_2_Fish_Core_C_Abundance_scaled, "beta")
CH_2_Fish_Core_C_fitbeta
## Fitting of the distribution ' beta ' by maximum likelihood
## Parameters:
## estimate Std. Error
## shape1 0.09443939 0.002107777
## shape2 0.86018425 0.040894268
cdfcomp(CH_2_Fish_Core_C_fitbeta, legendtext = "beta")
#Fit looks good - so now time to plot the beta-transformed distribution
betareg.control(maxit=10000)
## $phi
## [1] TRUE
##
## $method
## [1] "BFGS"
##
## $maxit
## [1] 10000
##
## $hessian
## [1] FALSE
##
## $trace
## [1] FALSE
##
## $start
## NULL
##
## $fsmaxit
## [1] 200
##
## $fstol
## [1] 1e-08
##
## $fnscale
## [1] -1
##
## $reltol
## [1] 9.02333e-14
CH_2_Fish_Core_beta_dist<-betareg(CH_2_Fish_Core_C_Abundance_scaled ~ Treatment*Genus, data=CH_2_FishCore_melted_C_cut)
summary(CH_2_Fish_Core_beta_dist)
##
## Call:
## betareg(formula = CH_2_Fish_Core_C_Abundance_scaled ~ Treatment *
## Genus, data = CH_2_FishCore_melted_C_cut)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -7.2309 -0.0345 0.0000 0.0000 8.8359
##
## Coefficients (mean model with logit link):
## Estimate
## (Intercept) -4.443311
## TreatmentArtemia/Week 2 -0.048286
## TreatmentArtemia/Week 3 -0.024244
## TreatmentArtemia/Week 4 -0.048286
## TreatmentWeek 0 3.371379
## TreatmentZooplankton/Week 1 0.138483
## TreatmentZooplankton/Week 2 -0.018042
## TreatmentZooplankton/Week 3 -0.048286
## TreatmentZooplankton/Week 4 -0.048286
## GenusAeromonas 4.009627
## GenusCedecea 0.951808
## GenusChryseobacterium -0.018616
## GenusChryseomicrobium 1.926301
## GenusClostridium_sensu_stricto_1 -0.048286
## GenusCollimonas -0.048286
## GenusDeefgea 0.251870
## GenusDomibacillus 1.646125
## GenusEnterobacter 1.299215
## GenusEscherichia/Shigella 2.819750
## GenusExiguobacterium 2.248068
## GenusJanthinobacterium 0.186902
## GenusLelliottia 0.431287
## GenusMethyloversatilis -0.048286
## GenusPlesiomonas 0.020634
## GenusPseudomonas 1.285690
## GenusShewanella 3.023756
## GenusSphingobacterium -0.048286
## GenusUndibacterium -0.048286
## TreatmentArtemia/Week 2:GenusAeromonas 0.987526
## TreatmentArtemia/Week 3:GenusAeromonas -2.491332
## TreatmentArtemia/Week 4:GenusAeromonas -3.533828
## TreatmentWeek 0:GenusAeromonas -7.045825
## TreatmentZooplankton/Week 1:GenusAeromonas 1.059961
## TreatmentZooplankton/Week 2:GenusAeromonas -0.978404
## TreatmentZooplankton/Week 3:GenusAeromonas -3.857458
## TreatmentZooplankton/Week 4:GenusAeromonas -3.964429
## TreatmentArtemia/Week 2:GenusCedecea 0.649023
## TreatmentArtemia/Week 3:GenusCedecea -0.771639
## TreatmentArtemia/Week 4:GenusCedecea -0.951808
## TreatmentWeek 0:GenusCedecea -4.371474
## TreatmentZooplankton/Week 1:GenusCedecea -1.077925
## TreatmentZooplankton/Week 2:GenusCedecea -0.982053
## TreatmentZooplankton/Week 3:GenusCedecea -0.951808
## TreatmentZooplankton/Week 4:GenusCedecea -0.951808
## TreatmentArtemia/Week 2:GenusChryseobacterium 0.018616
## TreatmentArtemia/Week 3:GenusChryseobacterium -0.005426
## TreatmentArtemia/Week 4:GenusChryseobacterium 0.018616
## TreatmentWeek 0:GenusChryseobacterium -0.799823
## TreatmentZooplankton/Week 1:GenusChryseobacterium 0.225650
## TreatmentZooplankton/Week 2:GenusChryseobacterium 0.179429
## TreatmentZooplankton/Week 3:GenusChryseobacterium 0.018616
## TreatmentZooplankton/Week 4:GenusChryseobacterium 0.100577
## TreatmentArtemia/Week 2:GenusChryseomicrobium -1.488330
## TreatmentArtemia/Week 3:GenusChryseomicrobium -1.950343
## TreatmentArtemia/Week 4:GenusChryseomicrobium -1.926301
## TreatmentWeek 0:GenusChryseomicrobium -5.345967
## TreatmentZooplankton/Week 1:GenusChryseomicrobium -2.113070
## TreatmentZooplankton/Week 2:GenusChryseomicrobium -1.956546
## TreatmentZooplankton/Week 3:GenusChryseomicrobium -1.926301
## TreatmentZooplankton/Week 4:GenusChryseomicrobium -1.926301
## TreatmentArtemia/Week 2:GenusClostridium_sensu_stricto_1 0.048286
## TreatmentArtemia/Week 3:GenusClostridium_sensu_stricto_1 0.048286
## TreatmentArtemia/Week 4:GenusClostridium_sensu_stricto_1 0.048286
## TreatmentWeek 0:GenusClostridium_sensu_stricto_1 -3.371379
## TreatmentZooplankton/Week 1:GenusClostridium_sensu_stricto_1 1.374916
## TreatmentZooplankton/Week 2:GenusClostridium_sensu_stricto_1 1.877254
## TreatmentZooplankton/Week 3:GenusClostridium_sensu_stricto_1 0.048286
## TreatmentZooplankton/Week 4:GenusClostridium_sensu_stricto_1 0.048286
## TreatmentArtemia/Week 2:GenusCollimonas 0.048286
## TreatmentArtemia/Week 3:GenusCollimonas 0.024244
## TreatmentArtemia/Week 4:GenusCollimonas 0.048286
## TreatmentWeek 0:GenusCollimonas -2.109216
## TreatmentZooplankton/Week 1:GenusCollimonas -0.108812
## TreatmentZooplankton/Week 2:GenusCollimonas 0.018042
## TreatmentZooplankton/Week 3:GenusCollimonas 0.068494
## TreatmentZooplankton/Week 4:GenusCollimonas 0.048286
## TreatmentArtemia/Week 2:GenusDeefgea 0.757250
## TreatmentArtemia/Week 3:GenusDeefgea -0.275911
## TreatmentArtemia/Week 4:GenusDeefgea -0.251870
## TreatmentWeek 0:GenusDeefgea -3.536304
## TreatmentZooplankton/Week 1:GenusDeefgea 1.847174
## TreatmentZooplankton/Week 2:GenusDeefgea 1.497498
## TreatmentZooplankton/Week 3:GenusDeefgea -0.251870
## TreatmentZooplankton/Week 4:GenusDeefgea -0.251870
## TreatmentArtemia/Week 2:GenusDomibacillus -0.855361
## TreatmentArtemia/Week 3:GenusDomibacillus -1.670167
## TreatmentArtemia/Week 4:GenusDomibacillus -1.646125
## TreatmentWeek 0:GenusDomibacillus -5.065790
## TreatmentZooplankton/Week 1:GenusDomibacillus -1.790800
## TreatmentZooplankton/Week 2:GenusDomibacillus -1.676369
## TreatmentZooplankton/Week 3:GenusDomibacillus -1.646125
## TreatmentZooplankton/Week 4:GenusDomibacillus -1.646125
## TreatmentArtemia/Week 2:GenusEnterobacter 0.820056
## TreatmentArtemia/Week 3:GenusEnterobacter -1.046134
## TreatmentArtemia/Week 4:GenusEnterobacter -1.299215
## TreatmentWeek 0:GenusEnterobacter -4.718880
## TreatmentZooplankton/Week 1:GenusEnterobacter -1.415692
## TreatmentZooplankton/Week 2:GenusEnterobacter -1.329459
## TreatmentZooplankton/Week 3:GenusEnterobacter -1.299215
## TreatmentZooplankton/Week 4:GenusEnterobacter -1.299215
## TreatmentArtemia/Week 2:GenusEscherichia/Shigella -0.620121
## TreatmentArtemia/Week 3:GenusEscherichia/Shigella -2.843792
## TreatmentArtemia/Week 4:GenusEscherichia/Shigella -2.819750
## TreatmentWeek 0:GenusEscherichia/Shigella -6.239415
## TreatmentZooplankton/Week 1:GenusEscherichia/Shigella -2.925706
## TreatmentZooplankton/Week 2:GenusEscherichia/Shigella -2.849994
## TreatmentZooplankton/Week 3:GenusEscherichia/Shigella -2.819750
## TreatmentZooplankton/Week 4:GenusEscherichia/Shigella -2.819750
## TreatmentArtemia/Week 2:GenusExiguobacterium -1.799675
## TreatmentArtemia/Week 3:GenusExiguobacterium -2.272110
## TreatmentArtemia/Week 4:GenusExiguobacterium -2.248068
## TreatmentWeek 0:GenusExiguobacterium -5.667733
## TreatmentZooplankton/Week 1:GenusExiguobacterium -2.077973
## TreatmentZooplankton/Week 2:GenusExiguobacterium -2.245362
## TreatmentZooplankton/Week 3:GenusExiguobacterium -2.248068
## TreatmentZooplankton/Week 4:GenusExiguobacterium -2.248068
## TreatmentArtemia/Week 2:GenusJanthinobacterium -0.186902
## TreatmentArtemia/Week 3:GenusJanthinobacterium -0.182616
## TreatmentArtemia/Week 4:GenusJanthinobacterium -0.186902
## TreatmentWeek 0:GenusJanthinobacterium -1.816921
## TreatmentZooplankton/Week 1:GenusJanthinobacterium -0.195786
## TreatmentZooplankton/Week 2:GenusJanthinobacterium -0.217146
## TreatmentZooplankton/Week 3:GenusJanthinobacterium -0.186902
## TreatmentZooplankton/Week 4:GenusJanthinobacterium -0.186902
## TreatmentArtemia/Week 2:GenusLelliottia 1.919764
## TreatmentArtemia/Week 3:GenusLelliottia 6.308867
## TreatmentArtemia/Week 4:GenusLelliottia 4.945628
## TreatmentWeek 0:GenusLelliottia -3.850952
## TreatmentZooplankton/Week 1:GenusLelliottia -0.430433
## TreatmentZooplankton/Week 2:GenusLelliottia -0.428580
## TreatmentZooplankton/Week 3:GenusLelliottia -0.365689
## TreatmentZooplankton/Week 4:GenusLelliottia -0.389820
## TreatmentArtemia/Week 2:GenusMethyloversatilis 0.048286
## TreatmentArtemia/Week 3:GenusMethyloversatilis 0.024244
## TreatmentArtemia/Week 4:GenusMethyloversatilis 0.048286
## TreatmentWeek 0:GenusMethyloversatilis -1.371554
## TreatmentZooplankton/Week 1:GenusMethyloversatilis -0.138483
## TreatmentZooplankton/Week 2:GenusMethyloversatilis 0.018042
## TreatmentZooplankton/Week 3:GenusMethyloversatilis 0.048286
## TreatmentZooplankton/Week 4:GenusMethyloversatilis 0.048286
## TreatmentArtemia/Week 2:GenusPlesiomonas 0.058362
## TreatmentArtemia/Week 3:GenusPlesiomonas 0.194442
## TreatmentArtemia/Week 4:GenusPlesiomonas 2.927895
## TreatmentWeek 0:GenusPlesiomonas -2.894268
## TreatmentZooplankton/Week 1:GenusPlesiomonas 0.153245
## TreatmentZooplankton/Week 2:GenusPlesiomonas 1.054271
## TreatmentZooplankton/Week 3:GenusPlesiomonas 8.303228
## TreatmentZooplankton/Week 4:GenusPlesiomonas 8.294737
## TreatmentArtemia/Week 2:GenusPseudomonas -0.073814
## TreatmentArtemia/Week 3:GenusPseudomonas -1.091603
## TreatmentArtemia/Week 4:GenusPseudomonas -1.244224
## TreatmentWeek 0:GenusPseudomonas -0.956125
## TreatmentZooplankton/Week 1:GenusPseudomonas -0.372170
## TreatmentZooplankton/Week 2:GenusPseudomonas -0.892743
## TreatmentZooplankton/Week 3:GenusPseudomonas -1.261887
## TreatmentZooplankton/Week 4:GenusPseudomonas -1.285690
## TreatmentArtemia/Week 2:GenusShewanella -1.799694
## TreatmentArtemia/Week 3:GenusShewanella -2.886859
## TreatmentArtemia/Week 4:GenusShewanella -2.988598
## TreatmentWeek 0:GenusShewanella -6.443421
## TreatmentZooplankton/Week 1:GenusShewanella -1.358442
## TreatmentZooplankton/Week 2:GenusShewanella 1.774932
## TreatmentZooplankton/Week 3:GenusShewanella -3.003548
## TreatmentZooplankton/Week 4:GenusShewanella -2.939034
## TreatmentArtemia/Week 2:GenusSphingobacterium 0.048286
## TreatmentArtemia/Week 3:GenusSphingobacterium 0.024244
## TreatmentArtemia/Week 4:GenusSphingobacterium 0.048286
## TreatmentWeek 0:GenusSphingobacterium -1.788683
## TreatmentZooplankton/Week 1:GenusSphingobacterium -0.138483
## TreatmentZooplankton/Week 2:GenusSphingobacterium 0.018042
## TreatmentZooplankton/Week 3:GenusSphingobacterium 0.048286
## TreatmentZooplankton/Week 4:GenusSphingobacterium 0.048286
## TreatmentArtemia/Week 2:GenusUndibacterium 0.048286
## TreatmentArtemia/Week 3:GenusUndibacterium 0.024244
## TreatmentArtemia/Week 4:GenusUndibacterium 0.048286
## TreatmentWeek 0:GenusUndibacterium -1.429816
## TreatmentZooplankton/Week 1:GenusUndibacterium 0.021257
## TreatmentZooplankton/Week 2:GenusUndibacterium 0.018042
## TreatmentZooplankton/Week 3:GenusUndibacterium 0.048286
## TreatmentZooplankton/Week 4:GenusUndibacterium 0.048286
## Std. Error
## (Intercept) 0.282368
## TreatmentArtemia/Week 2 0.422146
## TreatmentArtemia/Week 3 0.374728
## TreatmentArtemia/Week 4 0.411155
## TreatmentWeek 0 0.492722
## TreatmentZooplankton/Week 1 0.393497
## TreatmentZooplankton/Week 2 0.380283
## TreatmentZooplankton/Week 3 0.361232
## TreatmentZooplankton/Week 4 0.411155
## GenusAeromonas 0.333972
## GenusCedecea 0.390493
## GenusChryseobacterium 0.393632
## GenusChryseomicrobium 0.376042
## GenusClostridium_sensu_stricto_1 0.393649
## GenusCollimonas 0.393649
## GenusDeefgea 0.393343
## GenusDomibacillus 0.381743
## GenusEnterobacter 0.387062
## GenusEscherichia/Shigella 0.353639
## GenusExiguobacterium 0.368298
## GenusJanthinobacterium 0.393438
## GenusLelliottia 0.392971
## GenusMethyloversatilis 0.393649
## GenusPlesiomonas 0.393605
## GenusPseudomonas 0.387230
## GenusShewanella 0.348834
## GenusSphingobacterium 0.393649
## GenusUndibacterium 0.393649
## TreatmentArtemia/Week 2:GenusAeromonas 0.502486
## TreatmentArtemia/Week 3:GenusAeromonas 0.479875
## TreatmentArtemia/Week 4:GenusAeromonas 0.542049
## TreatmentWeek 0:GenusAeromonas 0.783786
## TreatmentZooplankton/Week 1:GenusAeromonas 0.470487
## TreatmentZooplankton/Week 2:GenusAeromonas 0.462659
## TreatmentZooplankton/Week 3:GenusAeromonas 0.466310
## TreatmentZooplankton/Week 4:GenusAeromonas 0.542819
## TreatmentArtemia/Week 2:GenusCedecea 0.585904
## TreatmentArtemia/Week 3:GenusCedecea 0.527518
## TreatmentArtemia/Week 4:GenusCedecea 0.579349
## TreatmentWeek 0:GenusCedecea 0.808832
## TreatmentZooplankton/Week 1:GenusCedecea 0.554372
## TreatmentZooplankton/Week 2:GenusCedecea 0.535531
## TreatmentZooplankton/Week 3:GenusCedecea 0.508454
## TreatmentZooplankton/Week 4:GenusCedecea 0.579349
## TreatmentArtemia/Week 2:GenusChryseobacterium 0.597012
## TreatmentArtemia/Week 3:GenusChryseobacterium 0.529963
## TreatmentArtemia/Week 4:GenusChryseobacterium 0.581470
## TreatmentWeek 0:GenusChryseobacterium 0.736088
## TreatmentZooplankton/Week 1:GenusChryseobacterium 0.556264
## TreatmentZooplankton/Week 2:GenusChryseobacterium 0.537723
## TreatmentZooplankton/Week 3:GenusChryseobacterium 0.510868
## TreatmentZooplankton/Week 4:GenusChryseobacterium 0.581427
## TreatmentArtemia/Week 2:GenusChryseomicrobium 0.584965
## TreatmentArtemia/Week 3:GenusChryseomicrobium 0.517037
## TreatmentArtemia/Week 4:GenusChryseomicrobium 0.569709
## TreatmentWeek 0:GenusChryseomicrobium 0.802644
## TreatmentZooplankton/Week 1:GenusChryseomicrobium 0.544346
## TreatmentZooplankton/Week 2:GenusChryseomicrobium 0.525090
## TreatmentZooplankton/Week 3:GenusChryseomicrobium 0.497441
## TreatmentZooplankton/Week 4:GenusChryseomicrobium 0.569709
## TreatmentArtemia/Week 2:GenusClostridium_sensu_stricto_1 0.597023
## TreatmentArtemia/Week 3:GenusClostridium_sensu_stricto_1 0.529967
## TreatmentArtemia/Week 4:GenusClostridium_sensu_stricto_1 0.581481
## TreatmentWeek 0:GenusClostridium_sensu_stricto_1 0.809976
## TreatmentZooplankton/Week 1:GenusClostridium_sensu_stricto_1 0.550358
## TreatmentZooplankton/Week 2:GenusClostridium_sensu_stricto_1 0.528404
## TreatmentZooplankton/Week 3:GenusClostridium_sensu_stricto_1 0.510882
## TreatmentZooplankton/Week 4:GenusClostridium_sensu_stricto_1 0.581481
## TreatmentArtemia/Week 2:GenusCollimonas 0.597023
## TreatmentArtemia/Week 3:GenusCollimonas 0.529975
## TreatmentArtemia/Week 4:GenusCollimonas 0.581481
## TreatmentWeek 0:GenusCollimonas 0.797443
## TreatmentZooplankton/Week 1:GenusCollimonas 0.556604
## TreatmentZooplankton/Week 2:GenusCollimonas 0.537834
## TreatmentZooplankton/Week 3:GenusCollimonas 0.510876
## TreatmentZooplankton/Week 4:GenusCollimonas 0.581481
## TreatmentArtemia/Week 2:GenusDeefgea 0.594032
## TreatmentArtemia/Week 3:GenusDeefgea 0.529748
## TreatmentArtemia/Week 4:GenusDeefgea 0.581274
## TreatmentWeek 0:GenusDeefgea 0.809667
## TreatmentZooplankton/Week 1:GenusDeefgea 0.538842
## TreatmentZooplankton/Week 2:GenusDeefgea 0.529109
## TreatmentZooplankton/Week 3:GenusDeefgea 0.510646
## TreatmentZooplankton/Week 4:GenusDeefgea 0.581274
## TreatmentArtemia/Week 2:GenusDomibacillus 0.587472
## TreatmentArtemia/Week 3:GenusDomibacillus 0.521197
## TreatmentArtemia/Week 4:GenusDomibacillus 0.573488
## TreatmentWeek 0:GenusDomibacillus 0.805112
## TreatmentZooplankton/Week 1:GenusDomibacillus 0.548267
## TreatmentZooplankton/Week 2:GenusDomibacillus 0.529187
## TreatmentZooplankton/Week 3:GenusDomibacillus 0.501765
## TreatmentZooplankton/Week 4:GenusDomibacillus 0.573488
## TreatmentArtemia/Week 2:GenusEnterobacter 0.574189
## TreatmentArtemia/Week 3:GenusEnterobacter 0.524906
## TreatmentArtemia/Week 4:GenusEnterobacter 0.577043
## TreatmentWeek 0:GenusEnterobacter 0.807396
## TreatmentZooplankton/Week 1:GenusEnterobacter 0.551960
## TreatmentZooplankton/Week 2:GenusEnterobacter 0.533036
## TreatmentZooplankton/Week 3:GenusEnterobacter 0.505824
## TreatmentZooplankton/Week 4:GenusEnterobacter 0.577043
## TreatmentArtemia/Week 2:GenusEscherichia/Shigella 0.549431
## TreatmentArtemia/Week 3:GenusEscherichia/Shigella 0.500982
## TreatmentArtemia/Week 4:GenusEscherichia/Shigella 0.555177
## TreatmentWeek 0:GenusEscherichia/Shigella 0.793055
## TreatmentZooplankton/Week 1:GenusEscherichia/Shigella 0.529076
## TreatmentZooplankton/Week 2:GenusEscherichia/Shigella 0.509291
## TreatmentZooplankton/Week 3:GenusEscherichia/Shigella 0.480730
## TreatmentZooplankton/Week 4:GenusEscherichia/Shigella 0.555177
## TreatmentArtemia/Week 2:GenusExiguobacterium 0.579969
## TreatmentArtemia/Week 3:GenusExiguobacterium 0.511433
## TreatmentArtemia/Week 4:GenusExiguobacterium 0.564628
## TreatmentWeek 0:GenusExiguobacterium 0.799299
## TreatmentZooplankton/Week 1:GenusExiguobacterium 0.538636
## TreatmentZooplankton/Week 2:GenusExiguobacterium 0.519553
## TreatmentZooplankton/Week 3:GenusExiguobacterium 0.491614
## TreatmentZooplankton/Week 4:GenusExiguobacterium 0.564628
## TreatmentArtemia/Week 2:GenusJanthinobacterium 0.596884
## TreatmentArtemia/Week 3:GenusJanthinobacterium 0.529809
## TreatmentArtemia/Week 4:GenusJanthinobacterium 0.581338
## TreatmentWeek 0:GenusJanthinobacterium 0.779353
## TreatmentZooplankton/Week 1:GenusJanthinobacterium 0.556366
## TreatmentZooplankton/Week 2:GenusJanthinobacterium 0.537680
## TreatmentZooplankton/Week 3:GenusJanthinobacterium 0.510719
## TreatmentZooplankton/Week 4:GenusJanthinobacterium 0.581338
## TreatmentArtemia/Week 2:GenusLelliottia 0.573675
## TreatmentArtemia/Week 3:GenusLelliottia 0.519476
## TreatmentArtemia/Week 4:GenusLelliottia 0.539152
## TreatmentWeek 0:GenusLelliottia 0.809792
## TreatmentZooplankton/Week 1:GenusLelliottia 0.556028
## TreatmentZooplankton/Week 2:GenusLelliottia 0.537326
## TreatmentZooplankton/Week 3:GenusLelliottia 0.510336
## TreatmentZooplankton/Week 4:GenusLelliottia 0.581002
## TreatmentArtemia/Week 2:GenusMethyloversatilis 0.597023
## TreatmentArtemia/Week 3:GenusMethyloversatilis 0.529975
## TreatmentArtemia/Week 4:GenusMethyloversatilis 0.581481
## TreatmentWeek 0:GenusMethyloversatilis 0.769537
## TreatmentZooplankton/Week 1:GenusMethyloversatilis 0.556617
## TreatmentZooplankton/Week 2:GenusMethyloversatilis 0.537834
## TreatmentZooplankton/Week 3:GenusMethyloversatilis 0.510882
## TreatmentZooplankton/Week 4:GenusMethyloversatilis 0.581481
## TreatmentArtemia/Week 2:GenusPlesiomonas 0.596951
## TreatmentArtemia/Week 3:GenusPlesiomonas 0.529813
## TreatmentArtemia/Week 4:GenusPlesiomonas 0.548556
## TreatmentWeek 0:GenusPlesiomonas 0.807958
## TreatmentZooplankton/Week 1:GenusPlesiomonas 0.556292
## TreatmentZooplankton/Week 2:GenusPlesiomonas 0.535274
## TreatmentZooplankton/Week 3:GenusPlesiomonas 0.518254
## TreatmentZooplankton/Week 4:GenusPlesiomonas 0.587505
## TreatmentArtemia/Week 2:GenusPseudomonas 0.588249
## TreatmentArtemia/Week 3:GenusPseudomonas 0.525087
## TreatmentArtemia/Week 4:GenusPseudomonas 0.577131
## TreatmentWeek 0:GenusPseudomonas 0.679598
## TreatmentZooplankton/Week 1:GenusPseudomonas 0.549094
## TreatmentZooplankton/Week 2:GenusPseudomonas 0.532757
## TreatmentZooplankton/Week 3:GenusPseudomonas 0.505942
## TreatmentZooplankton/Week 4:GenusPseudomonas 0.577155
## TreatmentArtemia/Week 2:GenusShewanella 0.563136
## TreatmentArtemia/Week 3:GenusShewanella 0.497461
## TreatmentArtemia/Week 4:GenusShewanella 0.552100
## TreatmentWeek 0:GenusShewanella 0.791044
## TreatmentZooplankton/Week 1:GenusShewanella 0.513419
## TreatmentZooplankton/Week 2:GenusShewanella 0.463755
## TreatmentZooplankton/Week 3:GenusShewanella 0.477192
## TreatmentZooplankton/Week 4:GenusShewanella 0.552054
## TreatmentArtemia/Week 2:GenusSphingobacterium 0.597023
## TreatmentArtemia/Week 3:GenusSphingobacterium 0.529975
## TreatmentArtemia/Week 4:GenusSphingobacterium 0.581481
## TreatmentWeek 0:GenusSphingobacterium 0.787698
## TreatmentZooplankton/Week 1:GenusSphingobacterium 0.556617
## TreatmentZooplankton/Week 2:GenusSphingobacterium 0.537834
## TreatmentZooplankton/Week 3:GenusSphingobacterium 0.510882
## TreatmentZooplankton/Week 4:GenusSphingobacterium 0.581481
## TreatmentArtemia/Week 2:GenusUndibacterium 0.597023
## TreatmentArtemia/Week 3:GenusUndibacterium 0.529975
## TreatmentArtemia/Week 4:GenusUndibacterium 0.581481
## TreatmentWeek 0:GenusUndibacterium 0.772414
## TreatmentZooplankton/Week 1:GenusUndibacterium 0.556529
## TreatmentZooplankton/Week 2:GenusUndibacterium 0.537834
## TreatmentZooplankton/Week 3:GenusUndibacterium 0.510882
## TreatmentZooplankton/Week 4:GenusUndibacterium 0.581481
## z value
## (Intercept) -15.736
## TreatmentArtemia/Week 2 -0.114
## TreatmentArtemia/Week 3 -0.065
## TreatmentArtemia/Week 4 -0.117
## TreatmentWeek 0 6.842
## TreatmentZooplankton/Week 1 0.352
## TreatmentZooplankton/Week 2 -0.047
## TreatmentZooplankton/Week 3 -0.134
## TreatmentZooplankton/Week 4 -0.117
## GenusAeromonas 12.006
## GenusCedecea 2.437
## GenusChryseobacterium -0.047
## GenusChryseomicrobium 5.123
## GenusClostridium_sensu_stricto_1 -0.123
## GenusCollimonas -0.123
## GenusDeefgea 0.640
## GenusDomibacillus 4.312
## GenusEnterobacter 3.357
## GenusEscherichia/Shigella 7.974
## GenusExiguobacterium 6.104
## GenusJanthinobacterium 0.475
## GenusLelliottia 1.098
## GenusMethyloversatilis -0.123
## GenusPlesiomonas 0.052
## GenusPseudomonas 3.320
## GenusShewanella 8.668
## GenusSphingobacterium -0.123
## GenusUndibacterium -0.123
## TreatmentArtemia/Week 2:GenusAeromonas 1.965
## TreatmentArtemia/Week 3:GenusAeromonas -5.192
## TreatmentArtemia/Week 4:GenusAeromonas -6.519
## TreatmentWeek 0:GenusAeromonas -8.989
## TreatmentZooplankton/Week 1:GenusAeromonas 2.253
## TreatmentZooplankton/Week 2:GenusAeromonas -2.115
## TreatmentZooplankton/Week 3:GenusAeromonas -8.272
## TreatmentZooplankton/Week 4:GenusAeromonas -7.303
## TreatmentArtemia/Week 2:GenusCedecea 1.108
## TreatmentArtemia/Week 3:GenusCedecea -1.463
## TreatmentArtemia/Week 4:GenusCedecea -1.643
## TreatmentWeek 0:GenusCedecea -5.405
## TreatmentZooplankton/Week 1:GenusCedecea -1.944
## TreatmentZooplankton/Week 2:GenusCedecea -1.834
## TreatmentZooplankton/Week 3:GenusCedecea -1.872
## TreatmentZooplankton/Week 4:GenusCedecea -1.643
## TreatmentArtemia/Week 2:GenusChryseobacterium 0.031
## TreatmentArtemia/Week 3:GenusChryseobacterium -0.010
## TreatmentArtemia/Week 4:GenusChryseobacterium 0.032
## TreatmentWeek 0:GenusChryseobacterium -1.087
## TreatmentZooplankton/Week 1:GenusChryseobacterium 0.406
## TreatmentZooplankton/Week 2:GenusChryseobacterium 0.334
## TreatmentZooplankton/Week 3:GenusChryseobacterium 0.036
## TreatmentZooplankton/Week 4:GenusChryseobacterium 0.173
## TreatmentArtemia/Week 2:GenusChryseomicrobium -2.544
## TreatmentArtemia/Week 3:GenusChryseomicrobium -3.772
## TreatmentArtemia/Week 4:GenusChryseomicrobium -3.381
## TreatmentWeek 0:GenusChryseomicrobium -6.660
## TreatmentZooplankton/Week 1:GenusChryseomicrobium -3.882
## TreatmentZooplankton/Week 2:GenusChryseomicrobium -3.726
## TreatmentZooplankton/Week 3:GenusChryseomicrobium -3.872
## TreatmentZooplankton/Week 4:GenusChryseomicrobium -3.381
## TreatmentArtemia/Week 2:GenusClostridium_sensu_stricto_1 0.081
## TreatmentArtemia/Week 3:GenusClostridium_sensu_stricto_1 0.091
## TreatmentArtemia/Week 4:GenusClostridium_sensu_stricto_1 0.083
## TreatmentWeek 0:GenusClostridium_sensu_stricto_1 -4.162
## TreatmentZooplankton/Week 1:GenusClostridium_sensu_stricto_1 2.498
## TreatmentZooplankton/Week 2:GenusClostridium_sensu_stricto_1 3.553
## TreatmentZooplankton/Week 3:GenusClostridium_sensu_stricto_1 0.095
## TreatmentZooplankton/Week 4:GenusClostridium_sensu_stricto_1 0.083
## TreatmentArtemia/Week 2:GenusCollimonas 0.081
## TreatmentArtemia/Week 3:GenusCollimonas 0.046
## TreatmentArtemia/Week 4:GenusCollimonas 0.083
## TreatmentWeek 0:GenusCollimonas -2.645
## TreatmentZooplankton/Week 1:GenusCollimonas -0.195
## TreatmentZooplankton/Week 2:GenusCollimonas 0.034
## TreatmentZooplankton/Week 3:GenusCollimonas 0.134
## TreatmentZooplankton/Week 4:GenusCollimonas 0.083
## TreatmentArtemia/Week 2:GenusDeefgea 1.275
## TreatmentArtemia/Week 3:GenusDeefgea -0.521
## TreatmentArtemia/Week 4:GenusDeefgea -0.433
## TreatmentWeek 0:GenusDeefgea -4.368
## TreatmentZooplankton/Week 1:GenusDeefgea 3.428
## TreatmentZooplankton/Week 2:GenusDeefgea 2.830
## TreatmentZooplankton/Week 3:GenusDeefgea -0.493
## TreatmentZooplankton/Week 4:GenusDeefgea -0.433
## TreatmentArtemia/Week 2:GenusDomibacillus -1.456
## TreatmentArtemia/Week 3:GenusDomibacillus -3.204
## TreatmentArtemia/Week 4:GenusDomibacillus -2.870
## TreatmentWeek 0:GenusDomibacillus -6.292
## TreatmentZooplankton/Week 1:GenusDomibacillus -3.266
## TreatmentZooplankton/Week 2:GenusDomibacillus -3.168
## TreatmentZooplankton/Week 3:GenusDomibacillus -3.281
## TreatmentZooplankton/Week 4:GenusDomibacillus -2.870
## TreatmentArtemia/Week 2:GenusEnterobacter 1.428
## TreatmentArtemia/Week 3:GenusEnterobacter -1.993
## TreatmentArtemia/Week 4:GenusEnterobacter -2.252
## TreatmentWeek 0:GenusEnterobacter -5.845
## TreatmentZooplankton/Week 1:GenusEnterobacter -2.565
## TreatmentZooplankton/Week 2:GenusEnterobacter -2.494
## TreatmentZooplankton/Week 3:GenusEnterobacter -2.569
## TreatmentZooplankton/Week 4:GenusEnterobacter -2.252
## TreatmentArtemia/Week 2:GenusEscherichia/Shigella -1.129
## TreatmentArtemia/Week 3:GenusEscherichia/Shigella -5.676
## TreatmentArtemia/Week 4:GenusEscherichia/Shigella -5.079
## TreatmentWeek 0:GenusEscherichia/Shigella -7.868
## TreatmentZooplankton/Week 1:GenusEscherichia/Shigella -5.530
## TreatmentZooplankton/Week 2:GenusEscherichia/Shigella -5.596
## TreatmentZooplankton/Week 3:GenusEscherichia/Shigella -5.866
## TreatmentZooplankton/Week 4:GenusEscherichia/Shigella -5.079
## TreatmentArtemia/Week 2:GenusExiguobacterium -3.103
## TreatmentArtemia/Week 3:GenusExiguobacterium -4.443
## TreatmentArtemia/Week 4:GenusExiguobacterium -3.982
## TreatmentWeek 0:GenusExiguobacterium -7.091
## TreatmentZooplankton/Week 1:GenusExiguobacterium -3.858
## TreatmentZooplankton/Week 2:GenusExiguobacterium -4.322
## TreatmentZooplankton/Week 3:GenusExiguobacterium -4.573
## TreatmentZooplankton/Week 4:GenusExiguobacterium -3.982
## TreatmentArtemia/Week 2:GenusJanthinobacterium -0.313
## TreatmentArtemia/Week 3:GenusJanthinobacterium -0.345
## TreatmentArtemia/Week 4:GenusJanthinobacterium -0.322
## TreatmentWeek 0:GenusJanthinobacterium -2.331
## TreatmentZooplankton/Week 1:GenusJanthinobacterium -0.352
## TreatmentZooplankton/Week 2:GenusJanthinobacterium -0.404
## TreatmentZooplankton/Week 3:GenusJanthinobacterium -0.366
## TreatmentZooplankton/Week 4:GenusJanthinobacterium -0.322
## TreatmentArtemia/Week 2:GenusLelliottia 3.346
## TreatmentArtemia/Week 3:GenusLelliottia 12.145
## TreatmentArtemia/Week 4:GenusLelliottia 9.173
## TreatmentWeek 0:GenusLelliottia -4.755
## TreatmentZooplankton/Week 1:GenusLelliottia -0.774
## TreatmentZooplankton/Week 2:GenusLelliottia -0.798
## TreatmentZooplankton/Week 3:GenusLelliottia -0.717
## TreatmentZooplankton/Week 4:GenusLelliottia -0.671
## TreatmentArtemia/Week 2:GenusMethyloversatilis 0.081
## TreatmentArtemia/Week 3:GenusMethyloversatilis 0.046
## TreatmentArtemia/Week 4:GenusMethyloversatilis 0.083
## TreatmentWeek 0:GenusMethyloversatilis -1.782
## TreatmentZooplankton/Week 1:GenusMethyloversatilis -0.249
## TreatmentZooplankton/Week 2:GenusMethyloversatilis 0.034
## TreatmentZooplankton/Week 3:GenusMethyloversatilis 0.095
## TreatmentZooplankton/Week 4:GenusMethyloversatilis 0.083
## TreatmentArtemia/Week 2:GenusPlesiomonas 0.098
## TreatmentArtemia/Week 3:GenusPlesiomonas 0.367
## TreatmentArtemia/Week 4:GenusPlesiomonas 5.337
## TreatmentWeek 0:GenusPlesiomonas -3.582
## TreatmentZooplankton/Week 1:GenusPlesiomonas 0.275
## TreatmentZooplankton/Week 2:GenusPlesiomonas 1.970
## TreatmentZooplankton/Week 3:GenusPlesiomonas 16.022
## TreatmentZooplankton/Week 4:GenusPlesiomonas 14.119
## TreatmentArtemia/Week 2:GenusPseudomonas -0.125
## TreatmentArtemia/Week 3:GenusPseudomonas -2.079
## TreatmentArtemia/Week 4:GenusPseudomonas -2.156
## TreatmentWeek 0:GenusPseudomonas -1.407
## TreatmentZooplankton/Week 1:GenusPseudomonas -0.678
## TreatmentZooplankton/Week 2:GenusPseudomonas -1.676
## TreatmentZooplankton/Week 3:GenusPseudomonas -2.494
## TreatmentZooplankton/Week 4:GenusPseudomonas -2.228
## TreatmentArtemia/Week 2:GenusShewanella -3.196
## TreatmentArtemia/Week 3:GenusShewanella -5.803
## TreatmentArtemia/Week 4:GenusShewanella -5.413
## TreatmentWeek 0:GenusShewanella -8.145
## TreatmentZooplankton/Week 1:GenusShewanella -2.646
## TreatmentZooplankton/Week 2:GenusShewanella 3.827
## TreatmentZooplankton/Week 3:GenusShewanella -6.294
## TreatmentZooplankton/Week 4:GenusShewanella -5.324
## TreatmentArtemia/Week 2:GenusSphingobacterium 0.081
## TreatmentArtemia/Week 3:GenusSphingobacterium 0.046
## TreatmentArtemia/Week 4:GenusSphingobacterium 0.083
## TreatmentWeek 0:GenusSphingobacterium -2.271
## TreatmentZooplankton/Week 1:GenusSphingobacterium -0.249
## TreatmentZooplankton/Week 2:GenusSphingobacterium 0.034
## TreatmentZooplankton/Week 3:GenusSphingobacterium 0.095
## TreatmentZooplankton/Week 4:GenusSphingobacterium 0.083
## TreatmentArtemia/Week 2:GenusUndibacterium 0.081
## TreatmentArtemia/Week 3:GenusUndibacterium 0.046
## TreatmentArtemia/Week 4:GenusUndibacterium 0.083
## TreatmentWeek 0:GenusUndibacterium -1.851
## TreatmentZooplankton/Week 1:GenusUndibacterium 0.038
## TreatmentZooplankton/Week 2:GenusUndibacterium 0.034
## TreatmentZooplankton/Week 3:GenusUndibacterium 0.095
## TreatmentZooplankton/Week 4:GenusUndibacterium 0.083
## Pr(>|z|)
## (Intercept) < 2e-16 ***
## TreatmentArtemia/Week 2 0.908934
## TreatmentArtemia/Week 3 0.948414
## TreatmentArtemia/Week 4 0.906511
## TreatmentWeek 0 7.79e-12 ***
## TreatmentZooplankton/Week 1 0.724892
## TreatmentZooplankton/Week 2 0.962160
## TreatmentZooplankton/Week 3 0.893663
## TreatmentZooplankton/Week 4 0.906511
## GenusAeromonas < 2e-16 ***
## GenusCedecea 0.014791 *
## GenusChryseobacterium 0.962280
## GenusChryseomicrobium 3.01e-07 ***
## GenusClostridium_sensu_stricto_1 0.902374
## GenusCollimonas 0.902374
## GenusDeefgea 0.521958
## GenusDomibacillus 1.62e-05 ***
## GenusEnterobacter 0.000789 ***
## GenusEscherichia/Shigella 1.54e-15 ***
## GenusExiguobacterium 1.03e-09 ***
## GenusJanthinobacterium 0.634752
## GenusLelliottia 0.272421
## GenusMethyloversatilis 0.902374
## GenusPlesiomonas 0.958192
## GenusPseudomonas 0.000899 ***
## GenusShewanella < 2e-16 ***
## GenusSphingobacterium 0.902374
## GenusUndibacterium 0.902374
## TreatmentArtemia/Week 2:GenusAeromonas 0.049382 *
## TreatmentArtemia/Week 3:GenusAeromonas 2.08e-07 ***
## TreatmentArtemia/Week 4:GenusAeromonas 7.06e-11 ***
## TreatmentWeek 0:GenusAeromonas < 2e-16 ***
## TreatmentZooplankton/Week 1:GenusAeromonas 0.024265 *
## TreatmentZooplankton/Week 2:GenusAeromonas 0.034452 *
## TreatmentZooplankton/Week 3:GenusAeromonas < 2e-16 ***
## TreatmentZooplankton/Week 4:GenusAeromonas 2.81e-13 ***
## TreatmentArtemia/Week 2:GenusCedecea 0.267979
## TreatmentArtemia/Week 3:GenusCedecea 0.143530
## TreatmentArtemia/Week 4:GenusCedecea 0.100405
## TreatmentWeek 0:GenusCedecea 6.49e-08 ***
## TreatmentZooplankton/Week 1:GenusCedecea 0.051846 .
## TreatmentZooplankton/Week 2:GenusCedecea 0.066685 .
## TreatmentZooplankton/Week 3:GenusCedecea 0.061211 .
## TreatmentZooplankton/Week 4:GenusCedecea 0.100405
## TreatmentArtemia/Week 2:GenusChryseobacterium 0.975125
## TreatmentArtemia/Week 3:GenusChryseobacterium 0.991831
## TreatmentArtemia/Week 4:GenusChryseobacterium 0.974460
## TreatmentWeek 0:GenusChryseobacterium 0.277220
## TreatmentZooplankton/Week 1:GenusChryseobacterium 0.684997
## TreatmentZooplankton/Week 2:GenusChryseobacterium 0.738619
## TreatmentZooplankton/Week 3:GenusChryseobacterium 0.970932
## TreatmentZooplankton/Week 4:GenusChryseobacterium 0.862664
## TreatmentArtemia/Week 2:GenusChryseomicrobium 0.010949 *
## TreatmentArtemia/Week 3:GenusChryseomicrobium 0.000162 ***
## TreatmentArtemia/Week 4:GenusChryseomicrobium 0.000722 ***
## TreatmentWeek 0:GenusChryseomicrobium 2.73e-11 ***
## TreatmentZooplankton/Week 1:GenusChryseomicrobium 0.000104 ***
## TreatmentZooplankton/Week 2:GenusChryseomicrobium 0.000194 ***
## TreatmentZooplankton/Week 3:GenusChryseomicrobium 0.000108 ***
## TreatmentZooplankton/Week 4:GenusChryseomicrobium 0.000722 ***
## TreatmentArtemia/Week 2:GenusClostridium_sensu_stricto_1 0.935539
## TreatmentArtemia/Week 3:GenusClostridium_sensu_stricto_1 0.927404
## TreatmentArtemia/Week 4:GenusClostridium_sensu_stricto_1 0.933820
## TreatmentWeek 0:GenusClostridium_sensu_stricto_1 3.15e-05 ***
## TreatmentZooplankton/Week 1:GenusClostridium_sensu_stricto_1 0.012482 *
## TreatmentZooplankton/Week 2:GenusClostridium_sensu_stricto_1 0.000381 ***
## TreatmentZooplankton/Week 3:GenusClostridium_sensu_stricto_1 0.924700
## TreatmentZooplankton/Week 4:GenusClostridium_sensu_stricto_1 0.933820
## TreatmentArtemia/Week 2:GenusCollimonas 0.935539
## TreatmentArtemia/Week 3:GenusCollimonas 0.963512
## TreatmentArtemia/Week 4:GenusCollimonas 0.933820
## TreatmentWeek 0:GenusCollimonas 0.008170 **
## TreatmentZooplankton/Week 1:GenusCollimonas 0.845007
## TreatmentZooplankton/Week 2:GenusCollimonas 0.973239
## TreatmentZooplankton/Week 3:GenusCollimonas 0.893345
## TreatmentZooplankton/Week 4:GenusCollimonas 0.933820
## TreatmentArtemia/Week 2:GenusDeefgea 0.202393
## TreatmentArtemia/Week 3:GenusDeefgea 0.602482
## TreatmentArtemia/Week 4:GenusDeefgea 0.664792
## TreatmentWeek 0:GenusDeefgea 1.26e-05 ***
## TreatmentZooplankton/Week 1:GenusDeefgea 0.000608 ***
## TreatmentZooplankton/Week 2:GenusDeefgea 0.004652 **
## TreatmentZooplankton/Week 3:GenusDeefgea 0.621845
## TreatmentZooplankton/Week 4:GenusDeefgea 0.664792
## TreatmentArtemia/Week 2:GenusDomibacillus 0.145392
## TreatmentArtemia/Week 3:GenusDomibacillus 0.001353 **
## TreatmentArtemia/Week 4:GenusDomibacillus 0.004100 **
## TreatmentWeek 0:GenusDomibacillus 3.13e-10 ***
## TreatmentZooplankton/Week 1:GenusDomibacillus 0.001090 **
## TreatmentZooplankton/Week 2:GenusDomibacillus 0.001536 **
## TreatmentZooplankton/Week 3:GenusDomibacillus 0.001036 **
## TreatmentZooplankton/Week 4:GenusDomibacillus 0.004100 **
## TreatmentArtemia/Week 2:GenusEnterobacter 0.153234
## TreatmentArtemia/Week 3:GenusEnterobacter 0.046262 *
## TreatmentArtemia/Week 4:GenusEnterobacter 0.024353 *
## TreatmentWeek 0:GenusEnterobacter 5.08e-09 ***
## TreatmentZooplankton/Week 1:GenusEnterobacter 0.010322 *
## TreatmentZooplankton/Week 2:GenusEnterobacter 0.012627 *
## TreatmentZooplankton/Week 3:GenusEnterobacter 0.010214 *
## TreatmentZooplankton/Week 4:GenusEnterobacter 0.024353 *
## TreatmentArtemia/Week 2:GenusEscherichia/Shigella 0.259042
## TreatmentArtemia/Week 3:GenusEscherichia/Shigella 1.38e-08 ***
## TreatmentArtemia/Week 4:GenusEscherichia/Shigella 3.79e-07 ***
## TreatmentWeek 0:GenusEscherichia/Shigella 3.62e-15 ***
## TreatmentZooplankton/Week 1:GenusEscherichia/Shigella 3.21e-08 ***
## TreatmentZooplankton/Week 2:GenusEscherichia/Shigella 2.19e-08 ***
## TreatmentZooplankton/Week 3:GenusEscherichia/Shigella 4.48e-09 ***
## TreatmentZooplankton/Week 4:GenusEscherichia/Shigella 3.79e-07 ***
## TreatmentArtemia/Week 2:GenusExiguobacterium 0.001915 **
## TreatmentArtemia/Week 3:GenusExiguobacterium 8.89e-06 ***
## TreatmentArtemia/Week 4:GenusExiguobacterium 6.85e-05 ***
## TreatmentWeek 0:GenusExiguobacterium 1.33e-12 ***
## TreatmentZooplankton/Week 1:GenusExiguobacterium 0.000114 ***
## TreatmentZooplankton/Week 2:GenusExiguobacterium 1.55e-05 ***
## TreatmentZooplankton/Week 3:GenusExiguobacterium 4.81e-06 ***
## TreatmentZooplankton/Week 4:GenusExiguobacterium 6.85e-05 ***
## TreatmentArtemia/Week 2:GenusJanthinobacterium 0.754182
## TreatmentArtemia/Week 3:GenusJanthinobacterium 0.730333
## TreatmentArtemia/Week 4:GenusJanthinobacterium 0.747829
## TreatmentWeek 0:GenusJanthinobacterium 0.019737 *
## TreatmentZooplankton/Week 1:GenusJanthinobacterium 0.724912
## TreatmentZooplankton/Week 2:GenusJanthinobacterium 0.686317
## TreatmentZooplankton/Week 3:GenusJanthinobacterium 0.714396
## TreatmentZooplankton/Week 4:GenusJanthinobacterium 0.747829
## TreatmentArtemia/Week 2:GenusLelliottia 0.000819 ***
## TreatmentArtemia/Week 3:GenusLelliottia < 2e-16 ***
## TreatmentArtemia/Week 4:GenusLelliottia < 2e-16 ***
## TreatmentWeek 0:GenusLelliottia 1.98e-06 ***
## TreatmentZooplankton/Week 1:GenusLelliottia 0.438859
## TreatmentZooplankton/Week 2:GenusLelliottia 0.425092
## TreatmentZooplankton/Week 3:GenusLelliottia 0.473642
## TreatmentZooplankton/Week 4:GenusLelliottia 0.502255
## TreatmentArtemia/Week 2:GenusMethyloversatilis 0.935539
## TreatmentArtemia/Week 3:GenusMethyloversatilis 0.963512
## TreatmentArtemia/Week 4:GenusMethyloversatilis 0.933820
## TreatmentWeek 0:GenusMethyloversatilis 0.074698 .
## TreatmentZooplankton/Week 1:GenusMethyloversatilis 0.803520
## TreatmentZooplankton/Week 2:GenusMethyloversatilis 0.973239
## TreatmentZooplankton/Week 3:GenusMethyloversatilis 0.924700
## TreatmentZooplankton/Week 4:GenusMethyloversatilis 0.933820
## TreatmentArtemia/Week 2:GenusPlesiomonas 0.922118
## TreatmentArtemia/Week 3:GenusPlesiomonas 0.713619
## TreatmentArtemia/Week 4:GenusPlesiomonas 9.43e-08 ***
## TreatmentWeek 0:GenusPlesiomonas 0.000341 ***
## TreatmentZooplankton/Week 1:GenusPlesiomonas 0.782950
## TreatmentZooplankton/Week 2:GenusPlesiomonas 0.048885 *
## TreatmentZooplankton/Week 3:GenusPlesiomonas < 2e-16 ***
## TreatmentZooplankton/Week 4:GenusPlesiomonas < 2e-16 ***
## TreatmentArtemia/Week 2:GenusPseudomonas 0.900143
## TreatmentArtemia/Week 3:GenusPseudomonas 0.037627 *
## TreatmentArtemia/Week 4:GenusPseudomonas 0.031093 *
## TreatmentWeek 0:GenusPseudomonas 0.159458
## TreatmentZooplankton/Week 1:GenusPseudomonas 0.497905
## TreatmentZooplankton/Week 2:GenusPseudomonas 0.093796 .
## TreatmentZooplankton/Week 3:GenusPseudomonas 0.012627 *
## TreatmentZooplankton/Week 4:GenusPseudomonas 0.025905 *
## TreatmentArtemia/Week 2:GenusShewanella 0.001394 **
## TreatmentArtemia/Week 3:GenusShewanella 6.51e-09 ***
## TreatmentArtemia/Week 4:GenusShewanella 6.19e-08 ***
## TreatmentWeek 0:GenusShewanella 3.78e-16 ***
## TreatmentZooplankton/Week 1:GenusShewanella 0.008148 **
## TreatmentZooplankton/Week 2:GenusShewanella 0.000130 ***
## TreatmentZooplankton/Week 3:GenusShewanella 3.09e-10 ***
## TreatmentZooplankton/Week 4:GenusShewanella 1.02e-07 ***
## TreatmentArtemia/Week 2:GenusSphingobacterium 0.935539
## TreatmentArtemia/Week 3:GenusSphingobacterium 0.963512
## TreatmentArtemia/Week 4:GenusSphingobacterium 0.933820
## TreatmentWeek 0:GenusSphingobacterium 0.023161 *
## TreatmentZooplankton/Week 1:GenusSphingobacterium 0.803520
## TreatmentZooplankton/Week 2:GenusSphingobacterium 0.973239
## TreatmentZooplankton/Week 3:GenusSphingobacterium 0.924700
## TreatmentZooplankton/Week 4:GenusSphingobacterium 0.933820
## TreatmentArtemia/Week 2:GenusUndibacterium 0.935539
## TreatmentArtemia/Week 3:GenusUndibacterium 0.963512
## TreatmentArtemia/Week 4:GenusUndibacterium 0.933820
## TreatmentWeek 0:GenusUndibacterium 0.064155 .
## TreatmentZooplankton/Week 1:GenusUndibacterium 0.969532
## TreatmentZooplankton/Week 2:GenusUndibacterium 0.973239
## TreatmentZooplankton/Week 3:GenusUndibacterium 0.924700
## TreatmentZooplankton/Week 4:GenusUndibacterium 0.933820
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 8.8692 0.4679 18.95 <2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 1.658e+04 on 181 Df
## Pseudo R-squared: 0.7966
## Number of iterations: 598 (BFGS) + 115 (Fisher scoring)
Anova(CH_2_Fish_Core_beta_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_Fish_Core_C_Abundance_scaled
## Df Chisq Pr(>Chisq)
## (Intercept) 1 247.618 < 2.2e-16 ***
## Treatment 8 65.918 3.176e-11 ***
## Genus 19 551.547 < 2.2e-16 ***
## Treatment:Genus 152 2797.578 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Proc_marginal<-emmeans(CH_2_Fish_Core_beta_dist, ~ Treatment*Genus)
pairs(Proc_marginal, adjust = "tukey")
## contrast
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Acidovorax
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Acidovorax
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Acidovorax
## Artemia/Week 1,Acidovorax - Week 0,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 1,Acidovorax - Week 0,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 1,Acidovorax - Week 0,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 1,Acidovorax - Week 0,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 1,Acidovorax - Week 0,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Acidovorax - Week 0,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Acidovorax - Week 0,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Acidovorax - Week 0,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 1,Acidovorax - Week 0,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Acidovorax - Week 0,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Acidovorax
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Acidovorax
## Artemia/Week 2,Acidovorax - Week 0,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 2,Acidovorax - Week 0,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 2,Acidovorax - Week 0,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 2,Acidovorax - Week 0,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 2,Acidovorax - Week 0,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Acidovorax - Week 0,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Acidovorax - Week 0,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Acidovorax - Week 0,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 2,Acidovorax - Week 0,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Acidovorax - Week 0,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Acidovorax
## Artemia/Week 3,Acidovorax - Week 0,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 3,Acidovorax - Week 0,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 3,Acidovorax - Week 0,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 3,Acidovorax - Week 0,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 3,Acidovorax - Week 0,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Acidovorax - Week 0,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Acidovorax - Week 0,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Acidovorax - Week 0,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 3,Acidovorax - Week 0,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Acidovorax - Week 0,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Acidovorax - Week 0,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Acidovorax
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Acidovorax
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Aeromonas
## Artemia/Week 4,Acidovorax - Week 0,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Aeromonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Aeromonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Cedecea
## Artemia/Week 4,Acidovorax - Week 0,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Cedecea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Cedecea
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Chryseobacterium
## Artemia/Week 4,Acidovorax - Week 0,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Week 0,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Collimonas
## Artemia/Week 4,Acidovorax - Week 0,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Deefgea
## Artemia/Week 4,Acidovorax - Week 0,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Acidovorax - Week 0,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Acidovorax - Week 0,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Week 0,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Acidovorax - Week 0,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Acidovorax - Week 0,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Acidovorax - Week 0,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Acidovorax - Week 0,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Acidovorax - Week 0,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Acidovorax - Week 0,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Shewanella
## Artemia/Week 4,Acidovorax - Week 0,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Acidovorax - Week 0,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Acidovorax - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Acidovorax - Week 0,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Acidovorax - Zooplankton/Week 4,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Acidovorax
## Week 0,Acidovorax - Zooplankton/Week 2,Acidovorax
## Week 0,Acidovorax - Zooplankton/Week 3,Acidovorax
## Week 0,Acidovorax - Zooplankton/Week 4,Acidovorax
## Week 0,Acidovorax - Artemia/Week 1,Aeromonas
## Week 0,Acidovorax - Artemia/Week 2,Aeromonas
## Week 0,Acidovorax - Artemia/Week 3,Aeromonas
## Week 0,Acidovorax - Artemia/Week 4,Aeromonas
## Week 0,Acidovorax - Week 0,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 1,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 2,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 3,Aeromonas
## Week 0,Acidovorax - Zooplankton/Week 4,Aeromonas
## Week 0,Acidovorax - Artemia/Week 1,Cedecea
## Week 0,Acidovorax - Artemia/Week 2,Cedecea
## Week 0,Acidovorax - Artemia/Week 3,Cedecea
## Week 0,Acidovorax - Artemia/Week 4,Cedecea
## Week 0,Acidovorax - Week 0,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 1,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 2,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 3,Cedecea
## Week 0,Acidovorax - Zooplankton/Week 4,Cedecea
## Week 0,Acidovorax - Artemia/Week 1,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 2,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 3,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 4,Chryseobacterium
## Week 0,Acidovorax - Week 0,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Week 0,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Week 0,Acidovorax - Week 0,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Acidovorax - Artemia/Week 1,Collimonas
## Week 0,Acidovorax - Artemia/Week 2,Collimonas
## Week 0,Acidovorax - Artemia/Week 3,Collimonas
## Week 0,Acidovorax - Artemia/Week 4,Collimonas
## Week 0,Acidovorax - Week 0,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 1,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 2,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 3,Collimonas
## Week 0,Acidovorax - Zooplankton/Week 4,Collimonas
## Week 0,Acidovorax - Artemia/Week 1,Deefgea
## Week 0,Acidovorax - Artemia/Week 2,Deefgea
## Week 0,Acidovorax - Artemia/Week 3,Deefgea
## Week 0,Acidovorax - Artemia/Week 4,Deefgea
## Week 0,Acidovorax - Week 0,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 1,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 2,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 3,Deefgea
## Week 0,Acidovorax - Zooplankton/Week 4,Deefgea
## Week 0,Acidovorax - Artemia/Week 1,Domibacillus
## Week 0,Acidovorax - Artemia/Week 2,Domibacillus
## Week 0,Acidovorax - Artemia/Week 3,Domibacillus
## Week 0,Acidovorax - Artemia/Week 4,Domibacillus
## Week 0,Acidovorax - Week 0,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 1,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 2,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 3,Domibacillus
## Week 0,Acidovorax - Zooplankton/Week 4,Domibacillus
## Week 0,Acidovorax - Artemia/Week 1,Enterobacter
## Week 0,Acidovorax - Artemia/Week 2,Enterobacter
## Week 0,Acidovorax - Artemia/Week 3,Enterobacter
## Week 0,Acidovorax - Artemia/Week 4,Enterobacter
## Week 0,Acidovorax - Week 0,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 1,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 2,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 3,Enterobacter
## Week 0,Acidovorax - Zooplankton/Week 4,Enterobacter
## Week 0,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Week 0,Acidovorax - Week 0,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Acidovorax - Artemia/Week 1,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 2,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 3,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 4,Exiguobacterium
## Week 0,Acidovorax - Week 0,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Week 0,Acidovorax - Artemia/Week 1,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 2,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 3,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 4,Janthinobacterium
## Week 0,Acidovorax - Week 0,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Week 0,Acidovorax - Artemia/Week 1,Lelliottia
## Week 0,Acidovorax - Artemia/Week 2,Lelliottia
## Week 0,Acidovorax - Artemia/Week 3,Lelliottia
## Week 0,Acidovorax - Artemia/Week 4,Lelliottia
## Week 0,Acidovorax - Week 0,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 1,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 2,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 3,Lelliottia
## Week 0,Acidovorax - Zooplankton/Week 4,Lelliottia
## Week 0,Acidovorax - Artemia/Week 1,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 2,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 3,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 4,Methyloversatilis
## Week 0,Acidovorax - Week 0,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Week 0,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Week 0,Acidovorax - Artemia/Week 1,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 2,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 3,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 4,Plesiomonas
## Week 0,Acidovorax - Week 0,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Week 0,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Week 0,Acidovorax - Artemia/Week 1,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 2,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 3,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 4,Pseudomonas
## Week 0,Acidovorax - Week 0,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Week 0,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Week 0,Acidovorax - Artemia/Week 1,Shewanella
## Week 0,Acidovorax - Artemia/Week 2,Shewanella
## Week 0,Acidovorax - Artemia/Week 3,Shewanella
## Week 0,Acidovorax - Artemia/Week 4,Shewanella
## Week 0,Acidovorax - Week 0,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 1,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 2,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 3,Shewanella
## Week 0,Acidovorax - Zooplankton/Week 4,Shewanella
## Week 0,Acidovorax - Artemia/Week 1,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 2,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 3,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 4,Sphingobacterium
## Week 0,Acidovorax - Week 0,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Week 0,Acidovorax - Artemia/Week 1,Undibacterium
## Week 0,Acidovorax - Artemia/Week 2,Undibacterium
## Week 0,Acidovorax - Artemia/Week 3,Undibacterium
## Week 0,Acidovorax - Artemia/Week 4,Undibacterium
## Week 0,Acidovorax - Week 0,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 1,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 2,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 3,Undibacterium
## Week 0,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Acidovorax
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Acidovorax
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Acidovorax
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 1,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 1,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Acidovorax
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Acidovorax
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 2,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 2,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Acidovorax
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 3,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 3,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Acidovorax - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Aeromonas
## Zooplankton/Week 4,Acidovorax - Week 0,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Cedecea
## Zooplankton/Week 4,Acidovorax - Week 0,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Acidovorax - Week 0,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Acidovorax - Week 0,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Acidovorax - Week 0,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Acidovorax - Week 0,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Acidovorax - Week 0,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Week 0,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Week 0,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Week 0,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Acidovorax - Week 0,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Acidovorax - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Acidovorax - Week 0,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Acidovorax - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Aeromonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Aeromonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Aeromonas
## Artemia/Week 1,Aeromonas - Week 0,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 1,Aeromonas - Week 0,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 1,Aeromonas - Week 0,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 1,Aeromonas - Week 0,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Aeromonas - Week 0,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Aeromonas - Week 0,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Aeromonas - Week 0,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Aeromonas - Week 0,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Aeromonas - Week 0,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Aeromonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Aeromonas
## Artemia/Week 2,Aeromonas - Week 0,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 2,Aeromonas - Week 0,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 2,Aeromonas - Week 0,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 2,Aeromonas - Week 0,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Aeromonas - Week 0,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Aeromonas - Week 0,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Aeromonas - Week 0,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Aeromonas - Week 0,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Aeromonas - Week 0,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Aeromonas
## Artemia/Week 3,Aeromonas - Week 0,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 3,Aeromonas - Week 0,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 3,Aeromonas - Week 0,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 3,Aeromonas - Week 0,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Aeromonas - Week 0,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Aeromonas - Week 0,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Aeromonas - Week 0,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Aeromonas - Week 0,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Aeromonas - Week 0,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Aeromonas - Week 0,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Aeromonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Aeromonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Cedecea
## Artemia/Week 4,Aeromonas - Week 0,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Cedecea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Cedecea
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Chryseobacterium
## Artemia/Week 4,Aeromonas - Week 0,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Week 0,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Collimonas
## Artemia/Week 4,Aeromonas - Week 0,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Deefgea
## Artemia/Week 4,Aeromonas - Week 0,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Aeromonas - Week 0,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Aeromonas - Week 0,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Week 0,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Aeromonas - Week 0,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Aeromonas - Week 0,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Aeromonas - Week 0,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Aeromonas - Week 0,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Aeromonas - Week 0,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Aeromonas - Week 0,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Aeromonas - Week 0,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Aeromonas - Week 0,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Aeromonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Aeromonas - Week 0,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Aeromonas - Zooplankton/Week 4,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Aeromonas
## Week 0,Aeromonas - Zooplankton/Week 2,Aeromonas
## Week 0,Aeromonas - Zooplankton/Week 3,Aeromonas
## Week 0,Aeromonas - Zooplankton/Week 4,Aeromonas
## Week 0,Aeromonas - Artemia/Week 1,Cedecea
## Week 0,Aeromonas - Artemia/Week 2,Cedecea
## Week 0,Aeromonas - Artemia/Week 3,Cedecea
## Week 0,Aeromonas - Artemia/Week 4,Cedecea
## Week 0,Aeromonas - Week 0,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 1,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 2,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 3,Cedecea
## Week 0,Aeromonas - Zooplankton/Week 4,Cedecea
## Week 0,Aeromonas - Artemia/Week 1,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 2,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 3,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 4,Chryseobacterium
## Week 0,Aeromonas - Week 0,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Week 0,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Week 0,Aeromonas - Week 0,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Aeromonas - Artemia/Week 1,Collimonas
## Week 0,Aeromonas - Artemia/Week 2,Collimonas
## Week 0,Aeromonas - Artemia/Week 3,Collimonas
## Week 0,Aeromonas - Artemia/Week 4,Collimonas
## Week 0,Aeromonas - Week 0,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 1,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 2,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 3,Collimonas
## Week 0,Aeromonas - Zooplankton/Week 4,Collimonas
## Week 0,Aeromonas - Artemia/Week 1,Deefgea
## Week 0,Aeromonas - Artemia/Week 2,Deefgea
## Week 0,Aeromonas - Artemia/Week 3,Deefgea
## Week 0,Aeromonas - Artemia/Week 4,Deefgea
## Week 0,Aeromonas - Week 0,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 1,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 2,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 3,Deefgea
## Week 0,Aeromonas - Zooplankton/Week 4,Deefgea
## Week 0,Aeromonas - Artemia/Week 1,Domibacillus
## Week 0,Aeromonas - Artemia/Week 2,Domibacillus
## Week 0,Aeromonas - Artemia/Week 3,Domibacillus
## Week 0,Aeromonas - Artemia/Week 4,Domibacillus
## Week 0,Aeromonas - Week 0,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 1,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 2,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 3,Domibacillus
## Week 0,Aeromonas - Zooplankton/Week 4,Domibacillus
## Week 0,Aeromonas - Artemia/Week 1,Enterobacter
## Week 0,Aeromonas - Artemia/Week 2,Enterobacter
## Week 0,Aeromonas - Artemia/Week 3,Enterobacter
## Week 0,Aeromonas - Artemia/Week 4,Enterobacter
## Week 0,Aeromonas - Week 0,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 1,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 2,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 3,Enterobacter
## Week 0,Aeromonas - Zooplankton/Week 4,Enterobacter
## Week 0,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Week 0,Aeromonas - Week 0,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Aeromonas - Artemia/Week 1,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 2,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 3,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 4,Exiguobacterium
## Week 0,Aeromonas - Week 0,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Week 0,Aeromonas - Artemia/Week 1,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 2,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 3,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 4,Janthinobacterium
## Week 0,Aeromonas - Week 0,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Week 0,Aeromonas - Artemia/Week 1,Lelliottia
## Week 0,Aeromonas - Artemia/Week 2,Lelliottia
## Week 0,Aeromonas - Artemia/Week 3,Lelliottia
## Week 0,Aeromonas - Artemia/Week 4,Lelliottia
## Week 0,Aeromonas - Week 0,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 1,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 2,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 3,Lelliottia
## Week 0,Aeromonas - Zooplankton/Week 4,Lelliottia
## Week 0,Aeromonas - Artemia/Week 1,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 2,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 3,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 4,Methyloversatilis
## Week 0,Aeromonas - Week 0,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Week 0,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Week 0,Aeromonas - Artemia/Week 1,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 2,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 3,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 4,Plesiomonas
## Week 0,Aeromonas - Week 0,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Week 0,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Week 0,Aeromonas - Artemia/Week 1,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 2,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 3,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 4,Pseudomonas
## Week 0,Aeromonas - Week 0,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Aeromonas - Artemia/Week 1,Shewanella
## Week 0,Aeromonas - Artemia/Week 2,Shewanella
## Week 0,Aeromonas - Artemia/Week 3,Shewanella
## Week 0,Aeromonas - Artemia/Week 4,Shewanella
## Week 0,Aeromonas - Week 0,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 1,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 2,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 3,Shewanella
## Week 0,Aeromonas - Zooplankton/Week 4,Shewanella
## Week 0,Aeromonas - Artemia/Week 1,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 2,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 3,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 4,Sphingobacterium
## Week 0,Aeromonas - Week 0,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Aeromonas - Artemia/Week 1,Undibacterium
## Week 0,Aeromonas - Artemia/Week 2,Undibacterium
## Week 0,Aeromonas - Artemia/Week 3,Undibacterium
## Week 0,Aeromonas - Artemia/Week 4,Undibacterium
## Week 0,Aeromonas - Week 0,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 1,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 2,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 3,Undibacterium
## Week 0,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Aeromonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 1,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Aeromonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 2,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Aeromonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 3,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Aeromonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Cedecea
## Zooplankton/Week 4,Aeromonas - Week 0,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Aeromonas - Week 0,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Aeromonas - Week 0,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Aeromonas - Week 0,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Aeromonas - Week 0,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Aeromonas - Week 0,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Week 0,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Week 0,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Week 0,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Aeromonas - Week 0,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Aeromonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Aeromonas - Week 0,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Aeromonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Cedecea
## Artemia/Week 1,Cedecea - Artemia/Week 3,Cedecea
## Artemia/Week 1,Cedecea - Artemia/Week 4,Cedecea
## Artemia/Week 1,Cedecea - Week 0,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 1,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 1,Cedecea - Week 0,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 1,Cedecea - Week 0,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Cedecea - Week 0,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Cedecea - Week 0,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Cedecea - Week 0,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Cedecea - Week 0,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Cedecea - Week 0,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 1,Cedecea - Week 0,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Cedecea - Week 0,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Cedecea
## Artemia/Week 2,Cedecea - Artemia/Week 4,Cedecea
## Artemia/Week 2,Cedecea - Week 0,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 2,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 2,Cedecea - Week 0,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 2,Cedecea - Week 0,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Cedecea - Week 0,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Cedecea - Week 0,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Cedecea - Week 0,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Cedecea - Week 0,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Cedecea - Week 0,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 2,Cedecea - Week 0,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Cedecea - Week 0,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Cedecea
## Artemia/Week 3,Cedecea - Week 0,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 3,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 3,Cedecea - Week 0,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 3,Cedecea - Week 0,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Cedecea - Week 0,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Cedecea - Week 0,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Cedecea - Week 0,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Cedecea - Week 0,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Cedecea - Week 0,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 3,Cedecea - Week 0,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Cedecea - Week 0,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Cedecea - Week 0,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Cedecea
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Cedecea
## Artemia/Week 4,Cedecea - Artemia/Week 1,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Chryseobacterium
## Artemia/Week 4,Cedecea - Week 0,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Cedecea - Week 0,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Cedecea - Artemia/Week 1,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 2,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 3,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 4,Collimonas
## Artemia/Week 4,Cedecea - Week 0,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Cedecea - Artemia/Week 1,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 2,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 3,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 4,Deefgea
## Artemia/Week 4,Cedecea - Week 0,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Cedecea - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Cedecea - Week 0,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Cedecea - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Cedecea - Week 0,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Week 0,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Cedecea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Cedecea - Week 0,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Cedecea - Week 0,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Cedecea - Week 0,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Cedecea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Cedecea - Week 0,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Cedecea - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Cedecea - Week 0,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Cedecea - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Cedecea - Week 0,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Cedecea - Artemia/Week 1,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 2,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 3,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 4,Shewanella
## Artemia/Week 4,Cedecea - Week 0,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Cedecea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Cedecea - Week 0,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Cedecea - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Cedecea - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Cedecea - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Cedecea - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Cedecea - Week 0,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Cedecea - Zooplankton/Week 4,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 1,Cedecea
## Week 0,Cedecea - Zooplankton/Week 2,Cedecea
## Week 0,Cedecea - Zooplankton/Week 3,Cedecea
## Week 0,Cedecea - Zooplankton/Week 4,Cedecea
## Week 0,Cedecea - Artemia/Week 1,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 2,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 3,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 4,Chryseobacterium
## Week 0,Cedecea - Week 0,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Week 0,Cedecea - Artemia/Week 1,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 2,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 3,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 4,Chryseomicrobium
## Week 0,Cedecea - Week 0,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Cedecea - Artemia/Week 1,Collimonas
## Week 0,Cedecea - Artemia/Week 2,Collimonas
## Week 0,Cedecea - Artemia/Week 3,Collimonas
## Week 0,Cedecea - Artemia/Week 4,Collimonas
## Week 0,Cedecea - Week 0,Collimonas
## Week 0,Cedecea - Zooplankton/Week 1,Collimonas
## Week 0,Cedecea - Zooplankton/Week 2,Collimonas
## Week 0,Cedecea - Zooplankton/Week 3,Collimonas
## Week 0,Cedecea - Zooplankton/Week 4,Collimonas
## Week 0,Cedecea - Artemia/Week 1,Deefgea
## Week 0,Cedecea - Artemia/Week 2,Deefgea
## Week 0,Cedecea - Artemia/Week 3,Deefgea
## Week 0,Cedecea - Artemia/Week 4,Deefgea
## Week 0,Cedecea - Week 0,Deefgea
## Week 0,Cedecea - Zooplankton/Week 1,Deefgea
## Week 0,Cedecea - Zooplankton/Week 2,Deefgea
## Week 0,Cedecea - Zooplankton/Week 3,Deefgea
## Week 0,Cedecea - Zooplankton/Week 4,Deefgea
## Week 0,Cedecea - Artemia/Week 1,Domibacillus
## Week 0,Cedecea - Artemia/Week 2,Domibacillus
## Week 0,Cedecea - Artemia/Week 3,Domibacillus
## Week 0,Cedecea - Artemia/Week 4,Domibacillus
## Week 0,Cedecea - Week 0,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 1,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 2,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 3,Domibacillus
## Week 0,Cedecea - Zooplankton/Week 4,Domibacillus
## Week 0,Cedecea - Artemia/Week 1,Enterobacter
## Week 0,Cedecea - Artemia/Week 2,Enterobacter
## Week 0,Cedecea - Artemia/Week 3,Enterobacter
## Week 0,Cedecea - Artemia/Week 4,Enterobacter
## Week 0,Cedecea - Week 0,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 1,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 2,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 3,Enterobacter
## Week 0,Cedecea - Zooplankton/Week 4,Enterobacter
## Week 0,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Week 0,Cedecea - Week 0,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Cedecea - Artemia/Week 1,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 2,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 3,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 4,Exiguobacterium
## Week 0,Cedecea - Week 0,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Week 0,Cedecea - Artemia/Week 1,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 2,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 3,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 4,Janthinobacterium
## Week 0,Cedecea - Week 0,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Week 0,Cedecea - Artemia/Week 1,Lelliottia
## Week 0,Cedecea - Artemia/Week 2,Lelliottia
## Week 0,Cedecea - Artemia/Week 3,Lelliottia
## Week 0,Cedecea - Artemia/Week 4,Lelliottia
## Week 0,Cedecea - Week 0,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 1,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 2,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 3,Lelliottia
## Week 0,Cedecea - Zooplankton/Week 4,Lelliottia
## Week 0,Cedecea - Artemia/Week 1,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 2,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 3,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 4,Methyloversatilis
## Week 0,Cedecea - Week 0,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Week 0,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Week 0,Cedecea - Artemia/Week 1,Plesiomonas
## Week 0,Cedecea - Artemia/Week 2,Plesiomonas
## Week 0,Cedecea - Artemia/Week 3,Plesiomonas
## Week 0,Cedecea - Artemia/Week 4,Plesiomonas
## Week 0,Cedecea - Week 0,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 1,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 2,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 3,Plesiomonas
## Week 0,Cedecea - Zooplankton/Week 4,Plesiomonas
## Week 0,Cedecea - Artemia/Week 1,Pseudomonas
## Week 0,Cedecea - Artemia/Week 2,Pseudomonas
## Week 0,Cedecea - Artemia/Week 3,Pseudomonas
## Week 0,Cedecea - Artemia/Week 4,Pseudomonas
## Week 0,Cedecea - Week 0,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 1,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 2,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 3,Pseudomonas
## Week 0,Cedecea - Zooplankton/Week 4,Pseudomonas
## Week 0,Cedecea - Artemia/Week 1,Shewanella
## Week 0,Cedecea - Artemia/Week 2,Shewanella
## Week 0,Cedecea - Artemia/Week 3,Shewanella
## Week 0,Cedecea - Artemia/Week 4,Shewanella
## Week 0,Cedecea - Week 0,Shewanella
## Week 0,Cedecea - Zooplankton/Week 1,Shewanella
## Week 0,Cedecea - Zooplankton/Week 2,Shewanella
## Week 0,Cedecea - Zooplankton/Week 3,Shewanella
## Week 0,Cedecea - Zooplankton/Week 4,Shewanella
## Week 0,Cedecea - Artemia/Week 1,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 2,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 3,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 4,Sphingobacterium
## Week 0,Cedecea - Week 0,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Week 0,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Week 0,Cedecea - Artemia/Week 1,Undibacterium
## Week 0,Cedecea - Artemia/Week 2,Undibacterium
## Week 0,Cedecea - Artemia/Week 3,Undibacterium
## Week 0,Cedecea - Artemia/Week 4,Undibacterium
## Week 0,Cedecea - Week 0,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 1,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 2,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 3,Undibacterium
## Week 0,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Cedecea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Cedecea - Week 0,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Cedecea - Week 0,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Cedecea - Week 0,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Cedecea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Cedecea - Week 0,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Cedecea - Week 0,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Cedecea - Week 0,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Cedecea
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Cedecea - Week 0,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Cedecea - Week 0,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Cedecea - Week 0,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Cedecea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Cedecea - Week 0,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Cedecea - Week 0,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Cedecea - Week 0,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Cedecea - Week 0,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Cedecea - Week 0,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Week 0,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Cedecea - Week 0,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Cedecea - Week 0,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Cedecea - Week 0,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Week 0,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Cedecea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Cedecea - Week 0,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Cedecea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 1,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 1,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 2,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 2,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 3,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 3,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Week 0,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Collimonas
## Artemia/Week 4,Chryseobacterium - Week 0,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Deefgea
## Artemia/Week 4,Chryseobacterium - Week 0,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Chryseobacterium - Week 0,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Chryseobacterium - Week 0,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Week 0,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Chryseobacterium - Week 0,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Week 0,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Week 0,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Week 0,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Chryseobacterium - Week 0,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Chryseobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Chryseobacterium - Week 0,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Chryseobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Week 0,Chryseobacterium - Week 0,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseobacterium - Artemia/Week 1,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 2,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 3,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 4,Collimonas
## Week 0,Chryseobacterium - Week 0,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Week 0,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Week 0,Chryseobacterium - Artemia/Week 1,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 2,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 3,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 4,Deefgea
## Week 0,Chryseobacterium - Week 0,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Week 0,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Week 0,Chryseobacterium - Artemia/Week 1,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 2,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 3,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 4,Domibacillus
## Week 0,Chryseobacterium - Week 0,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Week 0,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Week 0,Chryseobacterium - Artemia/Week 1,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 2,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 3,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 4,Enterobacter
## Week 0,Chryseobacterium - Week 0,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Week 0,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Week 0,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Week 0,Chryseobacterium - Week 0,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Week 0,Chryseobacterium - Week 0,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Week 0,Chryseobacterium - Week 0,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 2,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 3,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 4,Lelliottia
## Week 0,Chryseobacterium - Week 0,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Week 0,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Week 0,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Week 0,Chryseobacterium - Week 0,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Week 0,Chryseobacterium - Week 0,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Week 0,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Week 0,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Week 0,Chryseobacterium - Week 0,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Week 0,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Week 0,Chryseobacterium - Artemia/Week 1,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 2,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 3,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 4,Shewanella
## Week 0,Chryseobacterium - Week 0,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Week 0,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Week 0,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Week 0,Chryseobacterium - Week 0,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Chryseobacterium - Artemia/Week 1,Undibacterium
## Week 0,Chryseobacterium - Artemia/Week 2,Undibacterium
## Week 0,Chryseobacterium - Artemia/Week 3,Undibacterium
## Week 0,Chryseobacterium - Artemia/Week 4,Undibacterium
## Week 0,Chryseobacterium - Week 0,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Week 0,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Week 0,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Week 0,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Week 0,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Week 0,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Week 0,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Week 0,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Week 0,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 1,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 1,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 2,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 2,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 3,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 3,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Collimonas
## Artemia/Week 4,Chryseomicrobium - Week 0,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Deefgea
## Artemia/Week 4,Chryseomicrobium - Week 0,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Week 0,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Week 0,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Week 0,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Week 0,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Week 0,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Week 0,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Week 0,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Chryseomicrobium - Week 0,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Week 0,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Chryseomicrobium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Week 0,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Chryseomicrobium - Artemia/Week 1,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 2,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 3,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 4,Collimonas
## Week 0,Chryseomicrobium - Week 0,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Week 0,Chryseomicrobium - Artemia/Week 1,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 2,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 3,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 4,Deefgea
## Week 0,Chryseomicrobium - Week 0,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Week 0,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Week 0,Chryseomicrobium - Week 0,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Week 0,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Week 0,Chryseomicrobium - Week 0,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Week 0,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Week 0,Chryseomicrobium - Week 0,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Week 0,Chryseomicrobium - Week 0,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Week 0,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Week 0,Chryseomicrobium - Week 0,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Week 0,Chryseomicrobium - Week 0,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Week 0,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Week 0,Chryseomicrobium - Week 0,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Week 0,Chryseomicrobium - Week 0,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Week 0,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Week 0,Chryseomicrobium - Week 0,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Week 0,Chryseomicrobium - Artemia/Week 1,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 2,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 3,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 4,Shewanella
## Week 0,Chryseomicrobium - Week 0,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Week 0,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Week 0,Chryseomicrobium - Week 0,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Week 0,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Week 0,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Week 0,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Week 0,Chryseomicrobium - Week 0,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Week 0,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Chryseomicrobium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Chryseomicrobium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Chryseomicrobium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Week 0,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Chryseomicrobium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Week 0,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Clostridium_sensu_stricto_1
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Week 0,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Clostridium_sensu_stricto_1 - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Collimonas
## Artemia/Week 1,Collimonas - Artemia/Week 3,Collimonas
## Artemia/Week 1,Collimonas - Artemia/Week 4,Collimonas
## Artemia/Week 1,Collimonas - Week 0,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 1,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 1,Collimonas - Week 0,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Collimonas - Week 0,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Collimonas - Week 0,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Collimonas - Week 0,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Collimonas - Week 0,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Collimonas - Week 0,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Collimonas - Week 0,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Collimonas - Week 0,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Collimonas
## Artemia/Week 2,Collimonas - Artemia/Week 4,Collimonas
## Artemia/Week 2,Collimonas - Week 0,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 2,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 2,Collimonas - Week 0,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Collimonas - Week 0,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Collimonas - Week 0,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Collimonas - Week 0,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Collimonas - Week 0,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Collimonas - Week 0,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Collimonas - Week 0,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Collimonas - Week 0,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Collimonas
## Artemia/Week 3,Collimonas - Week 0,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 3,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 3,Collimonas - Week 0,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Collimonas - Week 0,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Collimonas - Week 0,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Collimonas - Week 0,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Collimonas - Week 0,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Collimonas - Week 0,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Collimonas - Week 0,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Collimonas - Week 0,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Collimonas - Week 0,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Collimonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Collimonas
## Artemia/Week 4,Collimonas - Artemia/Week 1,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 2,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 3,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 4,Deefgea
## Artemia/Week 4,Collimonas - Week 0,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Collimonas - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Collimonas - Week 0,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Collimonas - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Collimonas - Week 0,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Week 0,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Collimonas - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Collimonas - Week 0,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Collimonas - Week 0,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Collimonas - Week 0,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Collimonas - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Collimonas - Week 0,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Collimonas - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Collimonas - Week 0,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Collimonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Collimonas - Week 0,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Collimonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Collimonas - Week 0,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Collimonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Collimonas - Week 0,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Collimonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Collimonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Collimonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Collimonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Collimonas - Week 0,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Collimonas - Zooplankton/Week 4,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 1,Collimonas
## Week 0,Collimonas - Zooplankton/Week 2,Collimonas
## Week 0,Collimonas - Zooplankton/Week 3,Collimonas
## Week 0,Collimonas - Zooplankton/Week 4,Collimonas
## Week 0,Collimonas - Artemia/Week 1,Deefgea
## Week 0,Collimonas - Artemia/Week 2,Deefgea
## Week 0,Collimonas - Artemia/Week 3,Deefgea
## Week 0,Collimonas - Artemia/Week 4,Deefgea
## Week 0,Collimonas - Week 0,Deefgea
## Week 0,Collimonas - Zooplankton/Week 1,Deefgea
## Week 0,Collimonas - Zooplankton/Week 2,Deefgea
## Week 0,Collimonas - Zooplankton/Week 3,Deefgea
## Week 0,Collimonas - Zooplankton/Week 4,Deefgea
## Week 0,Collimonas - Artemia/Week 1,Domibacillus
## Week 0,Collimonas - Artemia/Week 2,Domibacillus
## Week 0,Collimonas - Artemia/Week 3,Domibacillus
## Week 0,Collimonas - Artemia/Week 4,Domibacillus
## Week 0,Collimonas - Week 0,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 1,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 2,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 3,Domibacillus
## Week 0,Collimonas - Zooplankton/Week 4,Domibacillus
## Week 0,Collimonas - Artemia/Week 1,Enterobacter
## Week 0,Collimonas - Artemia/Week 2,Enterobacter
## Week 0,Collimonas - Artemia/Week 3,Enterobacter
## Week 0,Collimonas - Artemia/Week 4,Enterobacter
## Week 0,Collimonas - Week 0,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 1,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 2,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 3,Enterobacter
## Week 0,Collimonas - Zooplankton/Week 4,Enterobacter
## Week 0,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Week 0,Collimonas - Week 0,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Collimonas - Artemia/Week 1,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 2,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 3,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 4,Exiguobacterium
## Week 0,Collimonas - Week 0,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Week 0,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Week 0,Collimonas - Artemia/Week 1,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 2,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 3,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 4,Janthinobacterium
## Week 0,Collimonas - Week 0,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Week 0,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Week 0,Collimonas - Artemia/Week 1,Lelliottia
## Week 0,Collimonas - Artemia/Week 2,Lelliottia
## Week 0,Collimonas - Artemia/Week 3,Lelliottia
## Week 0,Collimonas - Artemia/Week 4,Lelliottia
## Week 0,Collimonas - Week 0,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 1,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 2,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 3,Lelliottia
## Week 0,Collimonas - Zooplankton/Week 4,Lelliottia
## Week 0,Collimonas - Artemia/Week 1,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 2,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 3,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 4,Methyloversatilis
## Week 0,Collimonas - Week 0,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Week 0,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Week 0,Collimonas - Artemia/Week 1,Plesiomonas
## Week 0,Collimonas - Artemia/Week 2,Plesiomonas
## Week 0,Collimonas - Artemia/Week 3,Plesiomonas
## Week 0,Collimonas - Artemia/Week 4,Plesiomonas
## Week 0,Collimonas - Week 0,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 1,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 2,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 3,Plesiomonas
## Week 0,Collimonas - Zooplankton/Week 4,Plesiomonas
## Week 0,Collimonas - Artemia/Week 1,Pseudomonas
## Week 0,Collimonas - Artemia/Week 2,Pseudomonas
## Week 0,Collimonas - Artemia/Week 3,Pseudomonas
## Week 0,Collimonas - Artemia/Week 4,Pseudomonas
## Week 0,Collimonas - Week 0,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Collimonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Collimonas - Artemia/Week 1,Shewanella
## Week 0,Collimonas - Artemia/Week 2,Shewanella
## Week 0,Collimonas - Artemia/Week 3,Shewanella
## Week 0,Collimonas - Artemia/Week 4,Shewanella
## Week 0,Collimonas - Week 0,Shewanella
## Week 0,Collimonas - Zooplankton/Week 1,Shewanella
## Week 0,Collimonas - Zooplankton/Week 2,Shewanella
## Week 0,Collimonas - Zooplankton/Week 3,Shewanella
## Week 0,Collimonas - Zooplankton/Week 4,Shewanella
## Week 0,Collimonas - Artemia/Week 1,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 2,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 3,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 4,Sphingobacterium
## Week 0,Collimonas - Week 0,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Collimonas - Artemia/Week 1,Undibacterium
## Week 0,Collimonas - Artemia/Week 2,Undibacterium
## Week 0,Collimonas - Artemia/Week 3,Undibacterium
## Week 0,Collimonas - Artemia/Week 4,Undibacterium
## Week 0,Collimonas - Week 0,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 1,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 2,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 3,Undibacterium
## Week 0,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Collimonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 1,Collimonas - Week 0,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Collimonas - Week 0,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Collimonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 2,Collimonas - Week 0,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Collimonas - Week 0,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Collimonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 3,Collimonas - Week 0,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Collimonas - Week 0,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Collimonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Deefgea
## Zooplankton/Week 4,Collimonas - Week 0,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Collimonas - Week 0,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Collimonas - Week 0,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Week 0,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Week 0,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Collimonas - Week 0,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Week 0,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Collimonas - Week 0,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Collimonas - Week 0,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Collimonas - Week 0,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Collimonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Collimonas - Week 0,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Collimonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Deefgea
## Artemia/Week 1,Deefgea - Artemia/Week 3,Deefgea
## Artemia/Week 1,Deefgea - Artemia/Week 4,Deefgea
## Artemia/Week 1,Deefgea - Week 0,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 1,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Deefgea - Week 0,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Deefgea - Week 0,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Deefgea - Week 0,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Deefgea - Week 0,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Deefgea - Week 0,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 1,Deefgea - Week 0,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Deefgea - Week 0,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Deefgea
## Artemia/Week 2,Deefgea - Artemia/Week 4,Deefgea
## Artemia/Week 2,Deefgea - Week 0,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 2,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Deefgea - Week 0,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Deefgea - Week 0,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Deefgea - Week 0,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Deefgea - Week 0,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Deefgea - Week 0,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 2,Deefgea - Week 0,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Deefgea - Week 0,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Deefgea
## Artemia/Week 3,Deefgea - Week 0,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 3,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Deefgea - Week 0,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Deefgea - Week 0,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Deefgea - Week 0,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Deefgea - Week 0,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Deefgea - Week 0,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 3,Deefgea - Week 0,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Deefgea - Week 0,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Deefgea - Week 0,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Deefgea
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Deefgea
## Artemia/Week 4,Deefgea - Artemia/Week 1,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 2,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 3,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 4,Domibacillus
## Artemia/Week 4,Deefgea - Week 0,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Deefgea - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Deefgea - Week 0,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Week 0,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Deefgea - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Deefgea - Week 0,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Deefgea - Week 0,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Deefgea - Week 0,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Deefgea - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Deefgea - Week 0,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Deefgea - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Deefgea - Week 0,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Deefgea - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Deefgea - Week 0,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Deefgea - Artemia/Week 1,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 2,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 3,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 4,Shewanella
## Artemia/Week 4,Deefgea - Week 0,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Deefgea - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Deefgea - Week 0,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Deefgea - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Deefgea - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Deefgea - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Deefgea - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Deefgea - Week 0,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Deefgea - Zooplankton/Week 4,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 1,Deefgea
## Week 0,Deefgea - Zooplankton/Week 2,Deefgea
## Week 0,Deefgea - Zooplankton/Week 3,Deefgea
## Week 0,Deefgea - Zooplankton/Week 4,Deefgea
## Week 0,Deefgea - Artemia/Week 1,Domibacillus
## Week 0,Deefgea - Artemia/Week 2,Domibacillus
## Week 0,Deefgea - Artemia/Week 3,Domibacillus
## Week 0,Deefgea - Artemia/Week 4,Domibacillus
## Week 0,Deefgea - Week 0,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 1,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 2,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 3,Domibacillus
## Week 0,Deefgea - Zooplankton/Week 4,Domibacillus
## Week 0,Deefgea - Artemia/Week 1,Enterobacter
## Week 0,Deefgea - Artemia/Week 2,Enterobacter
## Week 0,Deefgea - Artemia/Week 3,Enterobacter
## Week 0,Deefgea - Artemia/Week 4,Enterobacter
## Week 0,Deefgea - Week 0,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 1,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 2,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 3,Enterobacter
## Week 0,Deefgea - Zooplankton/Week 4,Enterobacter
## Week 0,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Week 0,Deefgea - Week 0,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Deefgea - Artemia/Week 1,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 2,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 3,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 4,Exiguobacterium
## Week 0,Deefgea - Week 0,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Week 0,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Week 0,Deefgea - Artemia/Week 1,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 2,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 3,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 4,Janthinobacterium
## Week 0,Deefgea - Week 0,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Week 0,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Week 0,Deefgea - Artemia/Week 1,Lelliottia
## Week 0,Deefgea - Artemia/Week 2,Lelliottia
## Week 0,Deefgea - Artemia/Week 3,Lelliottia
## Week 0,Deefgea - Artemia/Week 4,Lelliottia
## Week 0,Deefgea - Week 0,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 1,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 2,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 3,Lelliottia
## Week 0,Deefgea - Zooplankton/Week 4,Lelliottia
## Week 0,Deefgea - Artemia/Week 1,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 2,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 3,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 4,Methyloversatilis
## Week 0,Deefgea - Week 0,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Week 0,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Week 0,Deefgea - Artemia/Week 1,Plesiomonas
## Week 0,Deefgea - Artemia/Week 2,Plesiomonas
## Week 0,Deefgea - Artemia/Week 3,Plesiomonas
## Week 0,Deefgea - Artemia/Week 4,Plesiomonas
## Week 0,Deefgea - Week 0,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 1,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 2,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 3,Plesiomonas
## Week 0,Deefgea - Zooplankton/Week 4,Plesiomonas
## Week 0,Deefgea - Artemia/Week 1,Pseudomonas
## Week 0,Deefgea - Artemia/Week 2,Pseudomonas
## Week 0,Deefgea - Artemia/Week 3,Pseudomonas
## Week 0,Deefgea - Artemia/Week 4,Pseudomonas
## Week 0,Deefgea - Week 0,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 1,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 2,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 3,Pseudomonas
## Week 0,Deefgea - Zooplankton/Week 4,Pseudomonas
## Week 0,Deefgea - Artemia/Week 1,Shewanella
## Week 0,Deefgea - Artemia/Week 2,Shewanella
## Week 0,Deefgea - Artemia/Week 3,Shewanella
## Week 0,Deefgea - Artemia/Week 4,Shewanella
## Week 0,Deefgea - Week 0,Shewanella
## Week 0,Deefgea - Zooplankton/Week 1,Shewanella
## Week 0,Deefgea - Zooplankton/Week 2,Shewanella
## Week 0,Deefgea - Zooplankton/Week 3,Shewanella
## Week 0,Deefgea - Zooplankton/Week 4,Shewanella
## Week 0,Deefgea - Artemia/Week 1,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 2,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 3,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 4,Sphingobacterium
## Week 0,Deefgea - Week 0,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Week 0,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Week 0,Deefgea - Artemia/Week 1,Undibacterium
## Week 0,Deefgea - Artemia/Week 2,Undibacterium
## Week 0,Deefgea - Artemia/Week 3,Undibacterium
## Week 0,Deefgea - Artemia/Week 4,Undibacterium
## Week 0,Deefgea - Week 0,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 1,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 2,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 3,Undibacterium
## Week 0,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Deefgea
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 1,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Deefgea - Week 0,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Deefgea
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 2,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Deefgea - Week 0,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Deefgea
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 3,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Deefgea - Week 0,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Deefgea - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Domibacillus
## Zooplankton/Week 4,Deefgea - Week 0,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Deefgea - Week 0,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Week 0,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Week 0,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Deefgea - Week 0,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Week 0,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Deefgea - Week 0,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Deefgea - Week 0,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Deefgea - Week 0,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Week 0,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Deefgea - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Deefgea - Week 0,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Deefgea - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Domibacillus
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Domibacillus
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Domibacillus
## Artemia/Week 1,Domibacillus - Week 0,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Domibacillus - Week 0,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Domibacillus - Week 0,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 1,Domibacillus - Week 0,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Domibacillus - Week 0,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Domibacillus
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Domibacillus
## Artemia/Week 2,Domibacillus - Week 0,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Domibacillus - Week 0,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Domibacillus - Week 0,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 2,Domibacillus - Week 0,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Domibacillus - Week 0,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Domibacillus
## Artemia/Week 3,Domibacillus - Week 0,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Domibacillus - Week 0,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Domibacillus - Week 0,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 3,Domibacillus - Week 0,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Domibacillus - Week 0,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Domibacillus - Week 0,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Domibacillus
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Domibacillus
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Enterobacter
## Artemia/Week 4,Domibacillus - Week 0,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Week 0,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Domibacillus - Week 0,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Domibacillus - Week 0,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Domibacillus - Week 0,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Domibacillus - Week 0,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Domibacillus - Week 0,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Domibacillus - Week 0,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Shewanella
## Artemia/Week 4,Domibacillus - Week 0,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Domibacillus - Week 0,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Domibacillus - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Domibacillus - Week 0,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Domibacillus - Zooplankton/Week 4,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Domibacillus
## Week 0,Domibacillus - Zooplankton/Week 2,Domibacillus
## Week 0,Domibacillus - Zooplankton/Week 3,Domibacillus
## Week 0,Domibacillus - Zooplankton/Week 4,Domibacillus
## Week 0,Domibacillus - Artemia/Week 1,Enterobacter
## Week 0,Domibacillus - Artemia/Week 2,Enterobacter
## Week 0,Domibacillus - Artemia/Week 3,Enterobacter
## Week 0,Domibacillus - Artemia/Week 4,Enterobacter
## Week 0,Domibacillus - Week 0,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 1,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 2,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 3,Enterobacter
## Week 0,Domibacillus - Zooplankton/Week 4,Enterobacter
## Week 0,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Week 0,Domibacillus - Week 0,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Domibacillus - Artemia/Week 1,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 2,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 3,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 4,Exiguobacterium
## Week 0,Domibacillus - Week 0,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Week 0,Domibacillus - Artemia/Week 1,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 2,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 3,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 4,Janthinobacterium
## Week 0,Domibacillus - Week 0,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Week 0,Domibacillus - Artemia/Week 1,Lelliottia
## Week 0,Domibacillus - Artemia/Week 2,Lelliottia
## Week 0,Domibacillus - Artemia/Week 3,Lelliottia
## Week 0,Domibacillus - Artemia/Week 4,Lelliottia
## Week 0,Domibacillus - Week 0,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 1,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 2,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 3,Lelliottia
## Week 0,Domibacillus - Zooplankton/Week 4,Lelliottia
## Week 0,Domibacillus - Artemia/Week 1,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 2,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 3,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 4,Methyloversatilis
## Week 0,Domibacillus - Week 0,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Week 0,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Week 0,Domibacillus - Artemia/Week 1,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 2,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 3,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 4,Plesiomonas
## Week 0,Domibacillus - Week 0,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Week 0,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Week 0,Domibacillus - Artemia/Week 1,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 2,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 3,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 4,Pseudomonas
## Week 0,Domibacillus - Week 0,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Week 0,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Week 0,Domibacillus - Artemia/Week 1,Shewanella
## Week 0,Domibacillus - Artemia/Week 2,Shewanella
## Week 0,Domibacillus - Artemia/Week 3,Shewanella
## Week 0,Domibacillus - Artemia/Week 4,Shewanella
## Week 0,Domibacillus - Week 0,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 1,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 2,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 3,Shewanella
## Week 0,Domibacillus - Zooplankton/Week 4,Shewanella
## Week 0,Domibacillus - Artemia/Week 1,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 2,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 3,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 4,Sphingobacterium
## Week 0,Domibacillus - Week 0,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Week 0,Domibacillus - Artemia/Week 1,Undibacterium
## Week 0,Domibacillus - Artemia/Week 2,Undibacterium
## Week 0,Domibacillus - Artemia/Week 3,Undibacterium
## Week 0,Domibacillus - Artemia/Week 4,Undibacterium
## Week 0,Domibacillus - Week 0,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 1,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 2,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 3,Undibacterium
## Week 0,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Domibacillus
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 1,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Domibacillus
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 2,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Domibacillus
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 3,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Domibacillus - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Enterobacter
## Zooplankton/Week 4,Domibacillus - Week 0,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Domibacillus - Week 0,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Week 0,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Week 0,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Week 0,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Domibacillus - Week 0,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Domibacillus - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Domibacillus - Week 0,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Domibacillus - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Enterobacter
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Enterobacter
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Enterobacter
## Artemia/Week 1,Enterobacter - Week 0,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Enterobacter - Week 0,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 1,Enterobacter - Week 0,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Enterobacter - Week 0,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Enterobacter
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Enterobacter
## Artemia/Week 2,Enterobacter - Week 0,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Enterobacter - Week 0,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 2,Enterobacter - Week 0,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Enterobacter - Week 0,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Enterobacter
## Artemia/Week 3,Enterobacter - Week 0,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Enterobacter - Week 0,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 3,Enterobacter - Week 0,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Enterobacter - Week 0,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Enterobacter - Week 0,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Enterobacter
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Enterobacter
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Week 0,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Enterobacter - Week 0,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Enterobacter - Week 0,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Enterobacter - Week 0,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Enterobacter - Week 0,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Enterobacter - Week 0,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Enterobacter - Week 0,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Shewanella
## Artemia/Week 4,Enterobacter - Week 0,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Enterobacter - Week 0,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Enterobacter - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Enterobacter - Week 0,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Enterobacter - Zooplankton/Week 4,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Enterobacter
## Week 0,Enterobacter - Zooplankton/Week 2,Enterobacter
## Week 0,Enterobacter - Zooplankton/Week 3,Enterobacter
## Week 0,Enterobacter - Zooplankton/Week 4,Enterobacter
## Week 0,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Week 0,Enterobacter - Week 0,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Enterobacter - Artemia/Week 1,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 2,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 3,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 4,Exiguobacterium
## Week 0,Enterobacter - Week 0,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Week 0,Enterobacter - Artemia/Week 1,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 2,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 3,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 4,Janthinobacterium
## Week 0,Enterobacter - Week 0,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Week 0,Enterobacter - Artemia/Week 1,Lelliottia
## Week 0,Enterobacter - Artemia/Week 2,Lelliottia
## Week 0,Enterobacter - Artemia/Week 3,Lelliottia
## Week 0,Enterobacter - Artemia/Week 4,Lelliottia
## Week 0,Enterobacter - Week 0,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 1,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 2,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 3,Lelliottia
## Week 0,Enterobacter - Zooplankton/Week 4,Lelliottia
## Week 0,Enterobacter - Artemia/Week 1,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 2,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 3,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 4,Methyloversatilis
## Week 0,Enterobacter - Week 0,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Week 0,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Week 0,Enterobacter - Artemia/Week 1,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 2,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 3,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 4,Plesiomonas
## Week 0,Enterobacter - Week 0,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Week 0,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Week 0,Enterobacter - Artemia/Week 1,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 2,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 3,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 4,Pseudomonas
## Week 0,Enterobacter - Week 0,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Week 0,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Week 0,Enterobacter - Artemia/Week 1,Shewanella
## Week 0,Enterobacter - Artemia/Week 2,Shewanella
## Week 0,Enterobacter - Artemia/Week 3,Shewanella
## Week 0,Enterobacter - Artemia/Week 4,Shewanella
## Week 0,Enterobacter - Week 0,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 1,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 2,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 3,Shewanella
## Week 0,Enterobacter - Zooplankton/Week 4,Shewanella
## Week 0,Enterobacter - Artemia/Week 1,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 2,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 3,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 4,Sphingobacterium
## Week 0,Enterobacter - Week 0,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Week 0,Enterobacter - Artemia/Week 1,Undibacterium
## Week 0,Enterobacter - Artemia/Week 2,Undibacterium
## Week 0,Enterobacter - Artemia/Week 3,Undibacterium
## Week 0,Enterobacter - Artemia/Week 4,Undibacterium
## Week 0,Enterobacter - Week 0,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 1,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 2,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 3,Undibacterium
## Week 0,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Enterobacter
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Enterobacter
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Enterobacter
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Enterobacter - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Week 0,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Enterobacter - Week 0,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Week 0,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Week 0,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Week 0,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Enterobacter - Week 0,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Enterobacter - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Enterobacter - Week 0,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Enterobacter - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Week 0,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Week 0,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Week 0,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Week 0,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Week 0,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Week 0,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Week 0,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Week 0,Escherichia/Shigella - Week 0,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Week 0,Escherichia/Shigella - Week 0,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Week 0,Escherichia/Shigella - Week 0,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Week 0,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Week 0,Escherichia/Shigella - Week 0,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Week 0,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Week 0,Escherichia/Shigella - Week 0,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Week 0,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Week 0,Escherichia/Shigella - Week 0,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Week 0,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Week 0,Escherichia/Shigella - Week 0,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Week 0,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Week 0,Escherichia/Shigella - Week 0,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Week 0,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Week 0,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Week 0,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Week 0,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Week 0,Escherichia/Shigella - Week 0,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Week 0,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Escherichia/Shigella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Escherichia/Shigella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Escherichia/Shigella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Week 0,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Escherichia/Shigella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Exiguobacterium - Week 0,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Week 0,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Week 0,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Week 0,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Exiguobacterium - Week 0,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Exiguobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Exiguobacterium - Week 0,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Exiguobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Week 0,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Week 0,Exiguobacterium - Week 0,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Exiguobacterium - Artemia/Week 1,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 2,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 3,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 4,Lelliottia
## Week 0,Exiguobacterium - Week 0,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Week 0,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Week 0,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Week 0,Exiguobacterium - Week 0,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Week 0,Exiguobacterium - Week 0,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Week 0,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Week 0,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Week 0,Exiguobacterium - Week 0,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Week 0,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Week 0,Exiguobacterium - Artemia/Week 1,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 2,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 3,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 4,Shewanella
## Week 0,Exiguobacterium - Week 0,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Week 0,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Week 0,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Week 0,Exiguobacterium - Week 0,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Exiguobacterium - Artemia/Week 1,Undibacterium
## Week 0,Exiguobacterium - Artemia/Week 2,Undibacterium
## Week 0,Exiguobacterium - Artemia/Week 3,Undibacterium
## Week 0,Exiguobacterium - Artemia/Week 4,Undibacterium
## Week 0,Exiguobacterium - Week 0,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Exiguobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Exiguobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Exiguobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Week 0,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Week 0,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Week 0,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Week 0,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Week 0,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Exiguobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 1,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 2,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 3,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Janthinobacterium - Week 0,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Lelliottia
## Artemia/Week 4,Janthinobacterium - Week 0,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Week 0,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Week 0,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Week 0,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Shewanella
## Artemia/Week 4,Janthinobacterium - Week 0,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Janthinobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Janthinobacterium - Week 0,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 1,Janthinobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Week 0,Janthinobacterium - Artemia/Week 1,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 2,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 3,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 4,Lelliottia
## Week 0,Janthinobacterium - Week 0,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Week 0,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Week 0,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Week 0,Janthinobacterium - Week 0,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Week 0,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Week 0,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Week 0,Janthinobacterium - Week 0,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Week 0,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Week 0,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Week 0,Janthinobacterium - Week 0,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Week 0,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Week 0,Janthinobacterium - Artemia/Week 1,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 2,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 3,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 4,Shewanella
## Week 0,Janthinobacterium - Week 0,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Week 0,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Week 0,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Week 0,Janthinobacterium - Week 0,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Janthinobacterium - Artemia/Week 1,Undibacterium
## Week 0,Janthinobacterium - Artemia/Week 2,Undibacterium
## Week 0,Janthinobacterium - Artemia/Week 3,Undibacterium
## Week 0,Janthinobacterium - Artemia/Week 4,Undibacterium
## Week 0,Janthinobacterium - Week 0,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Janthinobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Janthinobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Janthinobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Week 0,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Week 0,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Week 0,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Week 0,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Week 0,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Week 0,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Janthinobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Lelliottia
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Lelliottia
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Lelliottia
## Artemia/Week 1,Lelliottia - Week 0,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 1,Lelliottia - Week 0,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Lelliottia - Week 0,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Lelliottia
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Lelliottia
## Artemia/Week 2,Lelliottia - Week 0,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 2,Lelliottia - Week 0,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Lelliottia - Week 0,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Lelliottia
## Artemia/Week 3,Lelliottia - Week 0,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 3,Lelliottia - Week 0,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Lelliottia - Week 0,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Lelliottia - Week 0,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Lelliottia
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Lelliottia
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Methyloversatilis
## Artemia/Week 4,Lelliottia - Week 0,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Lelliottia - Week 0,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Lelliottia - Week 0,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Shewanella
## Artemia/Week 4,Lelliottia - Week 0,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Lelliottia - Week 0,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Lelliottia - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Lelliottia - Week 0,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Lelliottia - Zooplankton/Week 4,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 1,Lelliottia
## Week 0,Lelliottia - Zooplankton/Week 2,Lelliottia
## Week 0,Lelliottia - Zooplankton/Week 3,Lelliottia
## Week 0,Lelliottia - Zooplankton/Week 4,Lelliottia
## Week 0,Lelliottia - Artemia/Week 1,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 2,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 3,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 4,Methyloversatilis
## Week 0,Lelliottia - Week 0,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Week 0,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Week 0,Lelliottia - Artemia/Week 1,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 2,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 3,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 4,Plesiomonas
## Week 0,Lelliottia - Week 0,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Week 0,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Week 0,Lelliottia - Artemia/Week 1,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 2,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 3,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 4,Pseudomonas
## Week 0,Lelliottia - Week 0,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Week 0,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Week 0,Lelliottia - Artemia/Week 1,Shewanella
## Week 0,Lelliottia - Artemia/Week 2,Shewanella
## Week 0,Lelliottia - Artemia/Week 3,Shewanella
## Week 0,Lelliottia - Artemia/Week 4,Shewanella
## Week 0,Lelliottia - Week 0,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 1,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 2,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 3,Shewanella
## Week 0,Lelliottia - Zooplankton/Week 4,Shewanella
## Week 0,Lelliottia - Artemia/Week 1,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 2,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 3,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 4,Sphingobacterium
## Week 0,Lelliottia - Week 0,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Week 0,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Week 0,Lelliottia - Artemia/Week 1,Undibacterium
## Week 0,Lelliottia - Artemia/Week 2,Undibacterium
## Week 0,Lelliottia - Artemia/Week 3,Undibacterium
## Week 0,Lelliottia - Artemia/Week 4,Undibacterium
## Week 0,Lelliottia - Week 0,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 1,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 2,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 3,Undibacterium
## Week 0,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Lelliottia
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Lelliottia
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Lelliottia
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Lelliottia - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Week 0,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Week 0,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Week 0,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Lelliottia - Week 0,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Week 0,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Lelliottia - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Lelliottia - Week 0,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Lelliottia - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 1,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 2,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 3,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Methyloversatilis - Week 0,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Week 0,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Week 0,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Shewanella
## Artemia/Week 4,Methyloversatilis - Week 0,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Week 0,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Methyloversatilis - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Methyloversatilis - Week 0,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 1,Methyloversatilis
## Week 0,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Week 0,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Week 0,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Week 0,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Week 0,Methyloversatilis - Week 0,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Week 0,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Week 0,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Week 0,Methyloversatilis - Week 0,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Week 0,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Week 0,Methyloversatilis - Artemia/Week 1,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 2,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 3,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 4,Shewanella
## Week 0,Methyloversatilis - Week 0,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Week 0,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Week 0,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Week 0,Methyloversatilis - Week 0,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Week 0,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Week 0,Methyloversatilis - Artemia/Week 1,Undibacterium
## Week 0,Methyloversatilis - Artemia/Week 2,Undibacterium
## Week 0,Methyloversatilis - Artemia/Week 3,Undibacterium
## Week 0,Methyloversatilis - Artemia/Week 4,Undibacterium
## Week 0,Methyloversatilis - Week 0,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Week 0,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Methyloversatilis
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Methyloversatilis
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Methyloversatilis
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Week 0,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Week 0,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Week 0,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Week 0,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Week 0,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Methyloversatilis - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Plesiomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 1,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Plesiomonas - Week 0,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Plesiomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 2,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Plesiomonas - Week 0,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Plesiomonas
## Artemia/Week 3,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Plesiomonas - Week 0,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Plesiomonas - Week 0,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 4,Plesiomonas - Week 0,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Plesiomonas - Week 0,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Week 0,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Plesiomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Plesiomonas - Week 0,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 1,Plesiomonas
## Week 0,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Week 0,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Week 0,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Week 0,Plesiomonas - Artemia/Week 1,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 2,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 3,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 4,Pseudomonas
## Week 0,Plesiomonas - Week 0,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Plesiomonas - Artemia/Week 1,Shewanella
## Week 0,Plesiomonas - Artemia/Week 2,Shewanella
## Week 0,Plesiomonas - Artemia/Week 3,Shewanella
## Week 0,Plesiomonas - Artemia/Week 4,Shewanella
## Week 0,Plesiomonas - Week 0,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 1,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 2,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 3,Shewanella
## Week 0,Plesiomonas - Zooplankton/Week 4,Shewanella
## Week 0,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Week 0,Plesiomonas - Week 0,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Plesiomonas - Artemia/Week 1,Undibacterium
## Week 0,Plesiomonas - Artemia/Week 2,Undibacterium
## Week 0,Plesiomonas - Artemia/Week 3,Undibacterium
## Week 0,Plesiomonas - Artemia/Week 4,Undibacterium
## Week 0,Plesiomonas - Week 0,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Week 0,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Plesiomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Plesiomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Plesiomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Week 0,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Plesiomonas - Week 0,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Week 0,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Plesiomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Pseudomonas
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 1,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 1,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 1,Pseudomonas - Week 0,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Pseudomonas
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 2,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 2,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 2,Pseudomonas - Week 0,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Pseudomonas
## Artemia/Week 3,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 3,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 3,Pseudomonas - Week 0,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Pseudomonas - Week 0,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Artemia/Week 4,Pseudomonas - Artemia/Week 1,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 2,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 3,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 4,Shewanella
## Artemia/Week 4,Pseudomonas - Week 0,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Week 0,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Pseudomonas - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Pseudomonas - Week 0,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 1,Pseudomonas
## Week 0,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Week 0,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Week 0,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Week 0,Pseudomonas - Artemia/Week 1,Shewanella
## Week 0,Pseudomonas - Artemia/Week 2,Shewanella
## Week 0,Pseudomonas - Artemia/Week 3,Shewanella
## Week 0,Pseudomonas - Artemia/Week 4,Shewanella
## Week 0,Pseudomonas - Week 0,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 1,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 2,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 3,Shewanella
## Week 0,Pseudomonas - Zooplankton/Week 4,Shewanella
## Week 0,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Week 0,Pseudomonas - Week 0,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Week 0,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Week 0,Pseudomonas - Artemia/Week 1,Undibacterium
## Week 0,Pseudomonas - Artemia/Week 2,Undibacterium
## Week 0,Pseudomonas - Artemia/Week 3,Undibacterium
## Week 0,Pseudomonas - Artemia/Week 4,Undibacterium
## Week 0,Pseudomonas - Week 0,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Week 0,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Pseudomonas
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 1,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Pseudomonas
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 2,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Pseudomonas
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 3,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 1,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 2,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 3,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 4,Shewanella
## Zooplankton/Week 4,Pseudomonas - Week 0,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 1,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Week 0,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Week 0,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Pseudomonas - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 2,Shewanella
## Artemia/Week 1,Shewanella - Artemia/Week 3,Shewanella
## Artemia/Week 1,Shewanella - Artemia/Week 4,Shewanella
## Artemia/Week 1,Shewanella - Week 0,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 1,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 1,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Shewanella - Week 0,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 3,Shewanella
## Artemia/Week 2,Shewanella - Artemia/Week 4,Shewanella
## Artemia/Week 2,Shewanella - Week 0,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 2,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 2,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Shewanella - Week 0,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 4,Shewanella
## Artemia/Week 3,Shewanella - Week 0,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 3,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 3,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Shewanella - Week 0,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Shewanella - Week 0,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 1,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 2,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 3,Shewanella
## Artemia/Week 4,Shewanella - Zooplankton/Week 4,Shewanella
## Artemia/Week 4,Shewanella - Artemia/Week 1,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 2,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 3,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 4,Sphingobacterium
## Artemia/Week 4,Shewanella - Week 0,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Shewanella - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Shewanella - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Shewanella - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Shewanella - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Shewanella - Week 0,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Shewanella - Zooplankton/Week 4,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 1,Shewanella
## Week 0,Shewanella - Zooplankton/Week 2,Shewanella
## Week 0,Shewanella - Zooplankton/Week 3,Shewanella
## Week 0,Shewanella - Zooplankton/Week 4,Shewanella
## Week 0,Shewanella - Artemia/Week 1,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 2,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 3,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 4,Sphingobacterium
## Week 0,Shewanella - Week 0,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Week 0,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Week 0,Shewanella - Artemia/Week 1,Undibacterium
## Week 0,Shewanella - Artemia/Week 2,Undibacterium
## Week 0,Shewanella - Artemia/Week 3,Undibacterium
## Week 0,Shewanella - Artemia/Week 4,Undibacterium
## Week 0,Shewanella - Week 0,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 1,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 2,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 3,Undibacterium
## Week 0,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 2,Shewanella
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 1,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 3,Shewanella
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 2,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 4,Shewanella
## Zooplankton/Week 3,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Shewanella - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 1,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 2,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 3,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 4,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Week 0,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 1,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Shewanella - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Shewanella - Week 0,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Shewanella - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 2,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 3,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 4,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 3,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Sphingobacterium - Week 0,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 1,Undibacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 4,Sphingobacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 4,Sphingobacterium - Week 0,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 1,Sphingobacterium
## Week 0,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Week 0,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Week 0,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Week 0,Sphingobacterium - Artemia/Week 1,Undibacterium
## Week 0,Sphingobacterium - Artemia/Week 2,Undibacterium
## Week 0,Sphingobacterium - Artemia/Week 3,Undibacterium
## Week 0,Sphingobacterium - Artemia/Week 4,Undibacterium
## Week 0,Sphingobacterium - Week 0,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 2,Sphingobacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 3,Sphingobacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 4,Sphingobacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 3,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 1,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 2,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 3,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Artemia/Week 4,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Week 0,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 1,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 4,Sphingobacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 1,Undibacterium - Artemia/Week 2,Undibacterium
## Artemia/Week 1,Undibacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 1,Undibacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 1,Undibacterium - Week 0,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 1,Undibacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 2,Undibacterium - Artemia/Week 3,Undibacterium
## Artemia/Week 2,Undibacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 2,Undibacterium - Week 0,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 2,Undibacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 3,Undibacterium - Artemia/Week 4,Undibacterium
## Artemia/Week 3,Undibacterium - Week 0,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 3,Undibacterium - Zooplankton/Week 4,Undibacterium
## Artemia/Week 4,Undibacterium - Week 0,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 1,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 2,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 3,Undibacterium
## Artemia/Week 4,Undibacterium - Zooplankton/Week 4,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 1,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 2,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 3,Undibacterium
## Week 0,Undibacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 1,Undibacterium - Zooplankton/Week 2,Undibacterium
## Zooplankton/Week 1,Undibacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 1,Undibacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 2,Undibacterium - Zooplankton/Week 3,Undibacterium
## Zooplankton/Week 2,Undibacterium - Zooplankton/Week 4,Undibacterium
## Zooplankton/Week 3,Undibacterium - Zooplankton/Week 4,Undibacterium
## estimate SE df z.ratio p.value
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0002752 0.00425900 Inf 0.065 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.2434155 0.07694340 Inf -3.164 0.9692
## -0.0017030 0.00485741 Inf -0.351 1.0000
## 0.0002054 0.00433241 Inf 0.047 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.3816267 0.04283929 Inf -8.908 <.0001
## -0.6121439 0.04832884 Inf -12.666 <.0001
## -0.0381512 0.01176875 Inf -3.242 0.9462
## -0.0060890 0.00614790 Inf -0.990 1.0000
## -0.0045523 0.00973976 Inf -0.467 1.0000
## -0.6707660 0.04036692 Inf -16.617 <.0001
## -0.1814582 0.03028773 Inf -5.991 <.0001
## -0.0012557 0.00433325 Inf -0.290 1.0000
## 0.0000354 0.00471419 Inf 0.008 1.0000
## -0.0179346 0.00849982 Inf -2.110 1.0000
## -0.0409916 0.01533153 Inf -2.674 0.9999
## -0.0019342 0.00463266 Inf -0.418 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0001429 0.00454829 Inf -0.031 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0002119 0.00448043 Inf 0.047 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.1195819 0.05395171 Inf -2.216 1.0000
## -0.0047176 0.00549264 Inf -0.859 1.0000
## -0.0017595 0.00468065 Inf -0.376 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## -0.0003932 0.00480770 Inf -0.082 1.0000
## -0.0630540 0.01774741 Inf -3.553 0.7462
## -0.0054428 0.00619949 Inf -0.878 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0002752 0.00425900 Inf 0.065 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0368002 0.01267354 Inf -2.904 0.9975
## -0.0554627 0.01529144 Inf -3.627 0.6760
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0264526 0.02086270 Inf -1.268 1.0000
## 0.0002119 0.00448043 Inf 0.047 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0003181 0.00410354 Inf 0.078 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0032788 0.00518428 Inf -0.632 1.0000
## -0.0181946 0.00959520 Inf -1.896 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0010422 0.00791544 Inf -0.132 1.0000
## -0.0876119 0.02174945 Inf -4.028 0.2914
## -0.0506495 0.01444657 Inf -3.506 0.7871
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0458561 0.01452438 Inf -3.157 0.9707
## -0.0124871 0.00806915 Inf -1.548 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## 0.0000709 0.00450728 Inf 0.016 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0297042 0.01114942 Inf -2.664 0.9999
## -0.0736871 0.02222189 Inf -3.316 0.9147
## -0.0029445 0.00481322 Inf -0.612 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0002555 0.00457003 Inf -0.056 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.1530940 0.02984335 Inf -5.130 0.0037
## -0.0801700 0.02341587 Inf -3.424 0.8505
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0003796 0.00459410 Inf -0.083 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0885581 0.02189108 Inf -4.045 0.2781
## -0.0056184 0.00624514 Inf -0.900 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0041344 0.00536667 Inf -0.770 1.0000
## 0.0001748 0.00433762 Inf 0.040 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0023547 0.00499103 Inf -0.472 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0002270 0.00426679 Inf 0.053 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0512380 0.03181650 Inf -1.610 1.0000
## -0.0015867 0.00483382 Inf -0.328 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0061547 0.00580787 Inf -1.060 1.0000
## -0.0935976 0.02573270 Inf -3.637 0.6659
## -0.8949617 0.01897299 Inf -47.170 <.0001
## -0.6963025 0.04256958 Inf -16.357 <.0001
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0017142 0.00485969 Inf -0.353 1.0000
## 0.0001748 0.00433762 Inf 0.040 1.0000
## -0.0002005 0.00417739 Inf -0.048 1.0000
## 0.0000781 0.00470497 Inf 0.017 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0648166 0.03705867 Inf -1.749 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0002394 0.00456692 Inf -0.052 1.0000
## -0.0003580 0.00493172 Inf -0.073 1.0000
## -0.0024090 0.00471685 Inf -0.511 1.0000
## -0.1644693 0.03362700 Inf -4.891 0.0116
## -0.0073530 0.01120708 Inf -0.656 1.0000
## -0.0041932 0.00537932 Inf -0.780 1.0000
## -0.0211014 0.00867011 Inf -2.434 1.0000
## -0.9671784 0.00590355 Inf -163.830 <.0001
## -0.9670015 0.00720297 Inf -134.250 <.0001
## -0.0291717 0.01103256 Inf -2.644 0.9999
## -0.0246531 0.01129127 Inf -2.183 1.0000
## -0.0021216 0.00466574 Inf -0.455 1.0000
## 0.0000781 0.00470497 Inf 0.017 1.0000
## -0.3108664 0.08418988 Inf -3.692 0.6104
## -0.0209479 0.00918954 Inf -2.280 1.0000
## -0.0051967 0.00534020 Inf -0.973 1.0000
## 0.0002779 0.00410920 Inf 0.068 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.1831110 0.03264957 Inf -5.608 0.0003
## -0.0250815 0.01140208 Inf -2.200 1.0000
## -0.0013676 0.00453384 Inf -0.302 1.0000
## 0.0001498 0.00468948 Inf 0.032 1.0000
## 0.0005417 0.00710813 Inf 0.076 1.0000
## -0.0550179 0.01628788 Inf -3.378 0.8805
## -0.5719227 0.04036786 Inf -14.168 <.0001
## 0.0003181 0.00410354 Inf 0.078 1.0000
## -0.0004260 0.00481491 Inf -0.088 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0400950 0.02712361 Inf -1.478 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## 0.0005417 0.00441824 Inf 0.123 1.0000
## 0.0005417 0.00472348 Inf 0.115 1.0000
## 0.0005417 0.00421626 Inf 0.128 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0608038 0.03556111 Inf -1.710 1.0000
## -0.0013523 0.00478653 Inf -0.283 1.0000
## 0.0005417 0.00427559 Inf 0.127 1.0000
## 0.0005417 0.00407230 Inf 0.133 1.0000
## 0.0005417 0.00460565 Inf 0.118 1.0000
## -0.0002665 0.00447347 Inf -0.060 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.2439572 0.07695583 Inf -3.170 0.9677
## -0.0022447 0.00504686 Inf -0.445 1.0000
## -0.0003363 0.00454342 Inf -0.074 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.3821684 0.04286120 Inf -8.916 <.0001
## -0.6126856 0.04834762 Inf -12.673 <.0001
## -0.0386929 0.01185000 Inf -3.265 0.9373
## -0.0066307 0.00629926 Inf -1.053 1.0000
## -0.0050940 0.00983587 Inf -0.518 1.0000
## -0.6713077 0.04038921 Inf -16.621 <.0001
## -0.1819999 0.03031952 Inf -6.003 <.0001
## -0.0017974 0.00454452 Inf -0.396 1.0000
## -0.0005063 0.00490885 Inf -0.103 1.0000
## -0.0184764 0.00861089 Inf -2.146 1.0000
## -0.0415333 0.01539405 Inf -2.698 0.9999
## -0.0024759 0.00483098 Inf -0.513 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0006846 0.00474979 Inf -0.144 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003298 0.00468478 Inf -0.070 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1201236 0.05396964 Inf -2.226 1.0000
## -0.0052593 0.00566134 Inf -0.929 1.0000
## -0.0023012 0.00487699 Inf -0.472 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0009349 0.00499880 Inf -0.187 1.0000
## -0.0635957 0.01780172 Inf -3.572 0.7282
## -0.0059845 0.00634953 Inf -0.943 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## -0.0002665 0.00447347 Inf -0.060 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0373419 0.01274899 Inf -2.929 0.9967
## -0.0560044 0.01535436 Inf -3.647 0.6558
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0269943 0.02090841 Inf -1.291 1.0000
## -0.0003298 0.00468478 Inf -0.070 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0002236 0.00432570 Inf -0.052 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0038205 0.00536246 Inf -0.712 1.0000
## -0.0187363 0.00969374 Inf -1.933 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0015839 0.00803302 Inf -0.197 1.0000
## -0.0881536 0.02179389 Inf -4.045 0.2785
## -0.0511912 0.01451309 Inf -3.527 0.7689
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0463978 0.01459046 Inf -3.180 0.9651
## -0.0130288 0.00818564 Inf -1.592 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0004708 0.00471049 Inf -0.100 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0302459 0.01123486 Inf -2.692 0.9999
## -0.0742288 0.02226535 Inf -3.334 0.9056
## -0.0034862 0.00500457 Inf -0.697 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0007972 0.00477064 Inf -0.167 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1536357 0.02987569 Inf -5.143 0.0035
## -0.0807117 0.02345714 Inf -3.441 0.8383
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0009213 0.00479373 Inf -0.192 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0890998 0.02193524 Inf -4.062 0.2655
## -0.0061602 0.00639413 Inf -0.963 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0046761 0.00553912 Inf -0.844 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0028964 0.00517571 Inf -0.560 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## -0.0003147 0.00448089 Inf -0.070 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0517797 0.03184676 Inf -1.626 1.0000
## -0.0021284 0.00502415 Inf -0.424 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0066964 0.00596786 Inf -1.122 1.0000
## -0.0941393 0.02577029 Inf -3.653 0.6502
## -0.8955034 0.01901939 Inf -47.084 <.0001
## -0.6968442 0.04259063 Inf -16.361 <.0001
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0022559 0.00504906 Inf -0.447 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## -0.0007422 0.00439594 Inf -0.169 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0653583 0.03708472 Inf -1.762 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0007811 0.00476765 Inf -0.164 1.0000
## -0.0008997 0.00511818 Inf -0.176 1.0000
## -0.0029507 0.00491185 Inf -0.601 1.0000
## -0.1650110 0.03365568 Inf -4.903 0.0110
## -0.0078947 0.01129091 Inf -0.699 1.0000
## -0.0047349 0.00555138 Inf -0.853 1.0000
## -0.0216431 0.00877924 Inf -2.465 1.0000
## -0.9677201 0.00605474 Inf -159.829 <.0001
## -0.9675432 0.00732738 Inf -132.045 <.0001
## -0.0297134 0.01111888 Inf -2.672 0.9999
## -0.0251948 0.01137544 Inf -2.215 1.0000
## -0.0026633 0.00486274 Inf -0.548 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## -0.3114081 0.08420115 Inf -3.698 0.6044
## -0.0214896 0.00929256 Inf -2.313 1.0000
## -0.0057384 0.00551363 Inf -1.041 1.0000
## -0.0002638 0.00433108 Inf -0.061 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1836527 0.03267906 Inf -5.620 0.0003
## -0.0256232 0.01148545 Inf -2.231 1.0000
## -0.0019093 0.00473620 Inf -0.403 1.0000
## -0.0003919 0.00488510 Inf -0.080 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0555596 0.01634696 Inf -3.399 0.8673
## -0.5724644 0.04039047 Inf -14.173 <.0001
## -0.0002236 0.00432570 Inf -0.052 1.0000
## -0.0009677 0.00500574 Inf -0.193 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.2436907 0.07692859 Inf -3.168 0.9682
## -0.0019782 0.00461488 Inf -0.429 1.0000
## -0.0000698 0.00405841 Inf -0.017 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.3819019 0.04281247 Inf -8.920 <.0001
## -0.6124191 0.04830475 Inf -12.678 <.0001
## -0.0384263 0.01167167 Inf -3.292 0.9258
## -0.0063641 0.00595846 Inf -1.068 1.0000
## -0.0048275 0.00962123 Inf -0.502 1.0000
## -0.6710412 0.04033798 Inf -16.635 <.0001
## -0.1817334 0.03025020 Inf -6.008 <.0001
## -0.0015309 0.00405947 Inf -0.377 1.0000
## -0.0002398 0.00446371 Inf -0.054 1.0000
## -0.0182098 0.00836432 Inf -2.177 1.0000
## -0.0412668 0.01525717 Inf -2.705 0.9999
## -0.0022094 0.00437772 Inf -0.505 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0004181 0.00428815 Inf -0.098 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0000633 0.00421606 Inf -0.015 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.1198571 0.05393069 Inf -2.222 1.0000
## -0.0049928 0.00527963 Inf -0.946 1.0000
## -0.0020346 0.00442846 Inf -0.459 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## -0.0006684 0.00456239 Inf -0.146 1.0000
## -0.0633292 0.01768335 Inf -3.581 0.7200
## -0.0057180 0.00601163 Inf -0.951 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0000000 0.00397995 Inf 0.000 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0370754 0.01258342 Inf -2.946 0.9960
## -0.0557379 0.01521700 Inf -3.663 0.6403
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0267278 0.02080797 Inf -1.284 1.0000
## -0.0000633 0.00421606 Inf -0.015 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0000429 0.00381311 Inf 0.011 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0035540 0.00495791 Inf -0.717 1.0000
## -0.0184698 0.00947538 Inf -1.949 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0013174 0.00776894 Inf -0.170 1.0000
## -0.0878871 0.02169726 Inf -4.051 0.2741
## -0.0509247 0.01436772 Inf -3.544 0.7538
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0461313 0.01444591 Inf -3.193 0.9615
## -0.0127623 0.00792607 Inf -1.610 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0002043 0.00424460 Inf -0.048 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0299794 0.01104674 Inf -2.714 0.9998
## -0.0739623 0.02217079 Inf -3.336 0.9044
## -0.0032197 0.00456847 Inf -0.705 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0005307 0.00431121 Inf -0.123 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.1533692 0.02980530 Inf -5.146 0.0034
## -0.0804452 0.02336739 Inf -3.443 0.8369
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0006548 0.00433674 Inf -0.151 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0888333 0.02183923 Inf -4.068 0.2613
## -0.0058936 0.00605870 Inf -0.973 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0044096 0.00514840 Inf -0.856 1.0000
## -0.0001004 0.00406398 Inf -0.025 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0026299 0.00475538 Inf -0.553 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## -0.0000482 0.00398828 Inf -0.012 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0515132 0.03178078 Inf -1.621 1.0000
## -0.0018619 0.00459004 Inf -0.406 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0064299 0.00560695 Inf -1.147 1.0000
## -0.0938728 0.02568861 Inf -3.654 0.6490
## -0.8952369 0.01891083 Inf -47.340 <.0001
## -0.6965777 0.04254209 Inf -16.374 <.0001
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0019894 0.00461728 Inf -0.431 1.0000
## -0.0001004 0.00406398 Inf -0.025 1.0000
## -0.0004757 0.00389254 Inf -0.122 1.0000
## -0.0001971 0.00445396 Inf -0.044 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0650918 0.03702804 Inf -1.758 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0005146 0.00430791 Inf -0.119 1.0000
## -0.0006332 0.00469290 Inf -0.135 1.0000
## -0.0026841 0.00446676 Inf -0.601 1.0000
## -0.1647445 0.03359322 Inf -4.904 0.0109
## -0.0076282 0.01110433 Inf -0.687 1.0000
## -0.0044684 0.00516158 Inf -0.866 1.0000
## -0.0213765 0.00853742 Inf -2.504 1.0000
## -0.9674536 0.00570263 Inf -169.651 <.0001
## -0.9672767 0.00703923 Inf -137.412 <.0001
## -0.0294469 0.01092878 Inf -2.694 0.9999
## -0.0249283 0.01118979 Inf -2.228 1.0000
## -0.0023968 0.00441273 Inf -0.543 1.0000
## -0.0001971 0.00445396 Inf -0.044 1.0000
## -0.3111416 0.08417630 Inf -3.696 0.6065
## -0.0212230 0.00906445 Inf -2.341 1.0000
## -0.0054718 0.00512088 Inf -1.069 1.0000
## 0.0000027 0.00381921 Inf 0.001 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.1833862 0.03261476 Inf -5.623 0.0003
## -0.0253567 0.01130160 Inf -2.244 1.0000
## -0.0016428 0.00427295 Inf -0.384 1.0000
## -0.0001254 0.00443759 Inf -0.028 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0552931 0.01621801 Inf -3.409 0.8603
## -0.5721979 0.04033908 Inf -14.185 <.0001
## 0.0000429 0.00381311 Inf 0.011 1.0000
## -0.0007012 0.00457000 Inf -0.153 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0403702 0.02708164 Inf -1.491 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0610790 0.03552918 Inf -1.719 1.0000
## -0.0016275 0.00454018 Inf -0.358 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.2439572 0.07694869 Inf -3.170 0.9676
## -0.0022447 0.00493676 Inf -0.455 1.0000
## -0.0003363 0.00442079 Inf -0.076 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.3821684 0.04284837 Inf -8.919 <.0001
## -0.6126856 0.04833625 Inf -12.675 <.0001
## -0.0386929 0.01180353 Inf -3.278 0.9320
## -0.0066307 0.00621139 Inf -1.067 1.0000
## -0.0050940 0.00977983 Inf -0.521 1.0000
## -0.6713077 0.04037560 Inf -16.627 <.0001
## -0.1819999 0.03030139 Inf -6.006 <.0001
## -0.0017974 0.00442192 Inf -0.406 1.0000
## -0.0005063 0.00479558 Inf -0.106 1.0000
## -0.0184764 0.00854682 Inf -2.162 1.0000
## -0.0415333 0.01535831 Inf -2.704 0.9999
## -0.0024759 0.00471584 Inf -0.525 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0006846 0.00463263 Inf -0.148 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1201236 0.05395945 Inf -2.226 1.0000
## -0.0052593 0.00556341 Inf -0.945 1.0000
## -0.0023012 0.00476296 Inf -0.483 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0009349 0.00488761 Inf -0.191 1.0000
## -0.0635957 0.01777082 Inf -3.579 0.7224
## -0.0059845 0.00626237 Inf -0.956 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.2417125 0.07696311 Inf 3.141 0.9743
## 0.2436209 0.07693265 Inf 3.167 0.9685
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## -0.1382112 0.08794814 Inf -1.572 1.0000
## -0.3687284 0.09076247 Inf -4.063 0.2651
## 0.2052643 0.07769522 Inf 2.642 0.9999
## 0.2373265 0.07705340 Inf 3.080 0.9846
## 0.2388632 0.07742347 Inf 3.085 0.9839
## -0.4273505 0.08678851 Inf -4.924 0.0100
## 0.0619573 0.08255354 Inf 0.751 1.0000
## 0.2421598 0.07693201 Inf 3.148 0.9728
## 0.2434509 0.07695502 Inf 3.164 0.9692
## 0.2254809 0.07727240 Inf 2.918 0.9971
## 0.2024239 0.07831365 Inf 2.585 1.0000
## 0.2414813 0.07694914 Inf 3.138 0.9748
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2432726 0.07694495 Inf 3.162 0.9697
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2436274 0.07694113 Inf 3.166 0.9685
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.1238336 0.09385196 Inf 1.319 1.0000
## 0.2386979 0.07700447 Inf 3.100 0.9817
## 0.2416560 0.07695213 Inf 3.140 0.9743
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2430223 0.07696060 Inf 3.158 0.9706
## 0.1803615 0.07881976 Inf 2.288 1.0000
## 0.2379727 0.07705781 Inf 3.088 0.9834
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2436907 0.07692859 Inf 3.168 0.9682
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2066153 0.07783765 Inf 2.654 0.9999
## 0.1879528 0.07830398 Inf 2.400 1.0000
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2169629 0.07958435 Inf 2.726 0.9998
## 0.2436274 0.07694113 Inf 3.166 0.9685
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2437336 0.07692016 Inf 3.169 0.9680
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2401367 0.07698372 Inf 3.119 0.9784
## 0.2252209 0.07740046 Inf 2.910 0.9973
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2423733 0.07721675 Inf 3.139 0.9746
## 0.1558036 0.07981507 Inf 1.952 1.0000
## 0.1927660 0.07814391 Inf 2.467 1.0000
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.1975594 0.07815893 Inf 2.528 1.0000
## 0.2309284 0.07722800 Inf 2.990 0.9935
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2434864 0.07694263 Inf 3.165 0.9690
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2137113 0.07760548 Inf 2.754 0.9997
## 0.1697284 0.07994557 Inf 2.123 1.0000
## 0.2404710 0.07695977 Inf 3.125 0.9774
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2431600 0.07694618 Inf 3.160 0.9700
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.0903215 0.08239038 Inf 1.096 1.0000
## 0.1632455 0.08028538 Inf 2.033 1.0000
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2430359 0.07694755 Inf 3.158 0.9704
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.1548574 0.07985376 Inf 1.939 1.0000
## 0.2377971 0.07706142 Inf 3.086 0.9838
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2392811 0.07699584 Inf 3.108 0.9804
## 0.2435903 0.07693293 Inf 3.166 0.9686
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2410608 0.07697136 Inf 3.132 0.9760
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2436425 0.07692900 Inf 3.167 0.9684
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.1921775 0.08312668 Inf 2.312 1.0000
## 0.2418288 0.07696167 Inf 3.142 0.9740
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2372608 0.07702699 Inf 3.080 0.9846
## 0.1498179 0.08099113 Inf 1.850 1.0000
## -0.6515462 0.07914658 Inf -8.232 <.0001
## -0.4528870 0.08783611 Inf -5.156 0.0033
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.2417013 0.07696324 Inf 3.140 0.9743
## 0.2435903 0.07693293 Inf 3.166 0.9686
## 0.2432150 0.07692388 Inf 3.162 0.9696
## 0.2434936 0.07695447 Inf 3.164 0.9691
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.1785989 0.08526962 Inf 2.095 1.0000
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2431761 0.07694600 Inf 3.160 0.9700
## 0.2430575 0.07696846 Inf 3.158 0.9705
## 0.2410066 0.07695404 Inf 3.132 0.9760
## 0.0789462 0.08383553 Inf 0.942 1.0000
## 0.2360625 0.07762055 Inf 3.041 0.9892
## 0.2392223 0.07699670 Inf 3.107 0.9805
## 0.2223142 0.07729039 Inf 2.876 0.9982
## -0.7237629 0.07705371 Inf -9.393 <.0001
## -0.7235860 0.07716421 Inf -9.377 <.0001
## 0.2142438 0.07758889 Inf 2.761 0.9996
## 0.2187624 0.07762718 Inf 2.818 0.9992
## 0.2412939 0.07695106 Inf 3.136 0.9753
## 0.2434936 0.07695447 Inf 3.164 0.9691
## -0.0674509 0.11395994 Inf -0.592 1.0000
## 0.2224676 0.07735042 Inf 2.876 0.9982
## 0.2382189 0.07699354 Inf 3.094 0.9826
## 0.2436934 0.07692044 Inf 3.168 0.9681
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.0603045 0.08344907 Inf 0.723 1.0000
## 0.2183340 0.07764327 Inf 2.812 0.9992
## 0.2420479 0.07694352 Inf 3.146 0.9732
## 0.2435653 0.07695356 Inf 3.165 0.9689
## 0.2439572 0.07713892 Inf 3.163 0.9695
## 0.1883976 0.07850470 Inf 2.400 1.0000
## -0.3285072 0.08678297 Inf -3.785 0.5155
## 0.2437336 0.07692016 Inf 3.169 0.9680
## 0.2429895 0.07696103 Inf 3.157 0.9707
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2033205 0.08144743 Inf 2.496 1.0000
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.2439572 0.07693770 Inf 3.171 0.9675
## 0.2439572 0.07695583 Inf 3.170 0.9677
## 0.2439572 0.07692636 Inf 3.171 0.9674
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.1826117 0.08462980 Inf 2.158 1.0000
## 0.2420632 0.07695883 Inf 3.145 0.9733
## 0.2439572 0.07692964 Inf 3.171 0.9674
## 0.2439572 0.07691861 Inf 3.172 0.9673
## 0.2439572 0.07694869 Inf 3.170 0.9676
## 0.0019084 0.00468266 Inf 0.408 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.3799237 0.04287595 Inf -8.861 <.0001
## -0.6104409 0.04836334 Inf -12.622 <.0001
## -0.0364482 0.01189620 Inf -3.064 0.9867
## -0.0043860 0.00639692 Inf -0.686 1.0000
## -0.0028493 0.00989922 Inf -0.288 1.0000
## -0.6690630 0.04040880 Inf -16.557 <.0001
## -0.1797552 0.03033709 Inf -5.925 <.0001
## 0.0004473 0.00468256 Inf 0.096 1.0000
## 0.0017384 0.00503788 Inf 0.345 1.0000
## -0.0162317 0.00867870 Inf -1.870 1.0000
## -0.0392886 0.01542940 Inf -2.546 1.0000
## -0.0002313 0.00496056 Inf -0.047 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## 0.0015601 0.00488288 Inf 0.320 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0019148 0.00481994 Inf 0.397 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.1178789 0.05397919 Inf -2.184 1.0000
## -0.0030146 0.00577061 Inf -0.522 1.0000
## -0.0000565 0.00500550 Inf -0.011 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0013098 0.00512524 Inf 0.256 1.0000
## -0.0613510 0.01783117 Inf -3.441 0.8384
## -0.0037398 0.00644677 Inf -0.580 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0019782 0.00461488 Inf 0.429 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## -0.0350973 0.01279209 Inf -2.744 0.9997
## -0.0537597 0.01538883 Inf -3.493 0.7975
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0247497 0.02093555 Inf -1.182 1.0000
## 0.0019148 0.00481994 Inf 0.397 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0020211 0.00447183 Inf 0.452 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0015758 0.00547861 Inf -0.288 1.0000
## -0.0164916 0.00975397 Inf -1.691 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0006608 0.00811201 Inf 0.081 1.0000
## -0.0859089 0.02181754 Inf -3.938 0.3682
## -0.0489465 0.01454984 Inf -3.364 0.8888
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0441531 0.01462735 Inf -3.019 0.9913
## -0.0107841 0.00825868 Inf -1.306 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## 0.0017739 0.00484483 Inf 0.366 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0280012 0.01128475 Inf -2.481 1.0000
## -0.0719842 0.02228866 Inf -3.230 0.9504
## -0.0012415 0.00512905 Inf -0.242 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## 0.0014475 0.00490308 Inf 0.295 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.1513910 0.02989319 Inf -5.064 0.0051
## -0.0784670 0.02347918 Inf -3.342 0.9012
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## 0.0013234 0.00492545 Inf 0.269 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0868552 0.02195872 Inf -3.955 0.3524
## -0.0039155 0.00649061 Inf -0.603 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## -0.0024314 0.00565111 Inf -0.430 1.0000
## 0.0018778 0.00468747 Inf 0.401 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0006517 0.00529657 Inf -0.123 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0019300 0.00462203 Inf 0.418 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0495351 0.03186351 Inf -1.555 1.0000
## 0.0001163 0.00514911 Inf 0.023 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0044518 0.00607083 Inf -0.733 1.0000
## -0.0918946 0.02579025 Inf -3.563 0.7368
## -0.8932587 0.01906489 Inf -46.854 <.0001
## -0.6945995 0.04260952 Inf -16.302 <.0001
## 0.0022447 0.00732700 Inf 0.306 1.0000
## -0.0000112 0.00517333 Inf -0.002 1.0000
## 0.0018778 0.00468747 Inf 0.401 1.0000
## 0.0015025 0.00453936 Inf 0.331 1.0000
## 0.0017810 0.00502927 Inf 0.354 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0631137 0.03709884 Inf -1.701 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0014636 0.00490018 Inf 0.299 1.0000
## 0.0013449 0.00524177 Inf 0.257 1.0000
## -0.0007060 0.00503901 Inf -0.140 1.0000
## -0.1627664 0.03367132 Inf -4.834 0.0150
## -0.0056500 0.01134532 Inf -0.498 1.0000
## -0.0024902 0.00566309 Inf -0.440 1.0000
## -0.0193984 0.00884493 Inf -2.193 1.0000
## -0.9654754 0.00618131 Inf -156.193 <.0001
## -0.9652985 0.00743238 Inf -129.877 <.0001
## -0.0274687 0.01116937 Inf -2.459 1.0000
## -0.0229502 0.01142555 Inf -2.009 1.0000
## -0.0004186 0.00499136 Inf -0.084 1.0000
## 0.0017810 0.00502927 Inf 0.354 1.0000
## -0.3091635 0.08420820 Inf -3.671 0.6317
## -0.0192449 0.00935468 Inf -2.057 1.0000
## -0.0034937 0.00562548 Inf -0.621 1.0000
## 0.0019808 0.00447699 Inf 0.442 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.1814080 0.03269538 Inf -5.548 0.0004
## -0.0233786 0.01153501 Inf -2.027 1.0000
## 0.0003353 0.00486872 Inf 0.069 1.0000
## 0.0018528 0.00501483 Inf 0.369 1.0000
## 0.0022447 0.00732700 Inf 0.306 1.0000
## -0.0533149 0.01637937 Inf -3.255 0.9413
## -0.5702198 0.04040874 Inf -14.111 <.0001
## 0.0020211 0.00447183 Inf 0.452 1.0000
## 0.0012770 0.00513199 Inf 0.249 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0383920 0.02717908 Inf -1.413 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0022447 0.00476239 Inf 0.471 1.0000
## 0.0022447 0.00504686 Inf 0.445 1.0000
## 0.0022447 0.00457563 Inf 0.491 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## -0.0591009 0.03560302 Inf -1.660 1.0000
## 0.0003507 0.00510486 Inf 0.069 1.0000
## 0.0022447 0.00463036 Inf 0.485 1.0000
## 0.0022447 0.00444332 Inf 0.505 1.0000
## 0.0022447 0.00493676 Inf 0.455 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.3818321 0.04281983 Inf -8.917 <.0001
## -0.6123493 0.04831135 Inf -12.675 <.0001
## -0.0383566 0.01169840 Inf -3.279 0.9317
## -0.0062944 0.00601103 Inf -1.047 1.0000
## -0.0047577 0.00965390 Inf -0.493 1.0000
## -0.6709714 0.04034591 Inf -16.630 <.0001
## -0.1816636 0.03026051 Inf -6.003 <.0001
## -0.0014611 0.00413638 Inf -0.353 1.0000
## -0.0001700 0.00453380 Inf -0.037 1.0000
## -0.0181401 0.00840172 Inf -2.159 1.0000
## -0.0411970 0.01527762 Inf -2.697 0.9999
## -0.0021396 0.00444912 Inf -0.481 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0003483 0.00436106 Inf -0.080 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0000065 0.00429021 Inf 0.002 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.1197873 0.05393646 Inf -2.221 1.0000
## -0.0049230 0.00533892 Inf -0.922 1.0000
## -0.0019649 0.00449906 Inf -0.437 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## -0.0005986 0.00463098 Inf -0.129 1.0000
## -0.0632594 0.01770096 Inf -3.574 0.7270
## -0.0056482 0.00606375 Inf -0.931 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0000698 0.00405841 Inf 0.017 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0370056 0.01260823 Inf -2.935 0.9964
## -0.0556681 0.01523747 Inf -3.653 0.6499
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0266580 0.02082301 Inf -1.280 1.0000
## 0.0000065 0.00429021 Inf 0.002 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0001127 0.00389494 Inf 0.029 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0034842 0.00502104 Inf -0.694 1.0000
## -0.0184000 0.00950841 Inf -1.935 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0012476 0.00780940 Inf -0.160 1.0000
## -0.0878173 0.02171160 Inf -4.045 0.2786
## -0.0508549 0.01438941 Inf -3.534 0.7628
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0460615 0.01446750 Inf -3.184 0.9642
## -0.0126925 0.00796559 Inf -1.593 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0001345 0.00431825 Inf -0.031 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0299096 0.01107502 Inf -2.701 0.9999
## -0.0738925 0.02218483 Inf -3.331 0.9072
## -0.0031499 0.00463690 Inf -0.679 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0004609 0.00438374 Inf -0.105 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.1532994 0.02981575 Inf -5.142 0.0035
## -0.0803754 0.02338071 Inf -3.438 0.8405
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0005850 0.00440884 Inf -0.133 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0887635 0.02185348 Inf -4.062 0.2657
## -0.0058239 0.00611042 Inf -0.953 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0043398 0.00520920 Inf -0.833 1.0000
## -0.0000306 0.00414084 Inf -0.007 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0025601 0.00482118 Inf -0.531 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0000216 0.00406658 Inf 0.005 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0514434 0.03179059 Inf -1.618 1.0000
## -0.0017921 0.00465819 Inf -0.385 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0063601 0.00566279 Inf -1.123 1.0000
## -0.0938030 0.02570072 Inf -3.650 0.6534
## -0.8951671 0.01892787 Inf -47.294 <.0001
## -0.6965079 0.04254962 Inf -16.369 <.0001
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0019196 0.00468503 Inf -0.410 1.0000
## -0.0000306 0.00414084 Inf -0.007 1.0000
## -0.0004059 0.00397272 Inf -0.102 1.0000
## -0.0001273 0.00452420 Inf -0.028 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0650220 0.03703645 Inf -1.756 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0004448 0.00438049 Inf -0.102 1.0000
## -0.0005635 0.00475961 Inf -0.118 1.0000
## -0.0026144 0.00453675 Inf -0.576 1.0000
## -0.1646747 0.03360250 Inf -4.901 0.0111
## -0.0075584 0.01113262 Inf -0.679 1.0000
## -0.0043986 0.00522222 Inf -0.842 1.0000
## -0.0213068 0.00857405 Inf -2.485 1.0000
## -0.9673838 0.00575839 Inf -167.996 <.0001
## -0.9672069 0.00708448 Inf -136.525 <.0001
## -0.0293771 0.01095736 Inf -2.681 0.9999
## -0.0248585 0.01121774 Inf -2.216 1.0000
## -0.0023270 0.00448356 Inf -0.519 1.0000
## -0.0001273 0.00452420 Inf -0.028 1.0000
## -0.3110718 0.08418003 Inf -3.695 0.6075
## -0.0211533 0.00909895 Inf -2.325 1.0000
## -0.0054021 0.00518198 Inf -1.042 1.0000
## 0.0000725 0.00390091 Inf 0.019 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.1833164 0.03262432 Inf -5.619 0.0003
## -0.0252869 0.01132927 Inf -2.232 1.0000
## -0.0015730 0.00434609 Inf -0.362 1.0000
## -0.0000556 0.00450809 Inf -0.012 1.0000
## 0.0003363 0.00698977 Inf 0.048 1.0000
## -0.0552233 0.01623722 Inf -3.401 0.8658
## -0.5721281 0.04034697 Inf -14.180 <.0001
## 0.0001127 0.00389494 Inf 0.029 1.0000
## -0.0006314 0.00463847 Inf -0.136 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0403004 0.02709317 Inf -1.487 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0003363 0.00422519 Inf 0.080 1.0000
## 0.0003363 0.00454342 Inf 0.074 1.0000
## 0.0003363 0.00401351 Inf 0.084 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## -0.0610092 0.03553795 Inf -1.717 1.0000
## -0.0015577 0.00460907 Inf -0.338 1.0000
## 0.0003363 0.00407579 Inf 0.083 1.0000
## 0.0003363 0.00386199 Inf 0.087 1.0000
## 0.0003363 0.00442079 Inf 0.076 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.3821684 0.04279433 Inf -8.930 <.0001
## -0.6126856 0.04828835 Inf -12.688 <.0001
## -0.0386929 0.01160581 Inf -3.334 0.9055
## -0.0066307 0.00582692 Inf -1.138 1.0000
## -0.0050940 0.00954026 Inf -0.534 1.0000
## -0.6713077 0.04031824 Inf -16.650 <.0001
## -0.1819999 0.03022492 Inf -6.022 <.0001
## -0.0017974 0.00386328 Inf -0.465 1.0000
## -0.0005063 0.00428593 Inf -0.118 1.0000
## -0.0184764 0.00827162 Inf -2.234 1.0000
## -0.0415333 0.01520688 Inf -2.731 0.9998
## -0.0024759 0.00419651 Inf -0.590 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0006846 0.00410278 Inf -0.167 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1201236 0.05391655 Inf -2.228 1.0000
## -0.0052593 0.00513060 Inf -1.025 1.0000
## -0.0023012 0.00424939 Inf -0.542 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## -0.0009349 0.00438865 Inf -0.213 1.0000
## -0.0635957 0.01764011 Inf -3.605 0.6972
## -0.0059845 0.00588123 Inf -1.018 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0002665 0.00377945 Inf -0.071 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0373419 0.01252235 Inf -2.982 0.9940
## -0.0560044 0.01516669 Inf -3.693 0.6103
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0269943 0.02077099 Inf -1.300 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## -0.0002236 0.00360333 Inf -0.062 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0038205 0.00479878 Inf -0.796 1.0000
## -0.0187363 0.00939366 Inf -1.995 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0015839 0.00766823 Inf -0.207 1.0000
## -0.0881536 0.02166209 Inf -4.069 0.2600
## -0.0511912 0.01431440 Inf -3.576 0.7247
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01439284 Inf -3.224 0.9524
## -0.0130288 0.00782796 Inf -1.664 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0004708 0.00405722 Inf -0.116 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.3821684 0.04284837 Inf -8.919 <.0001
## -0.6126856 0.04833625 Inf -12.675 <.0001
## -0.0386929 0.01180353 Inf -3.278 0.9320
## -0.0066307 0.00621139 Inf -1.067 1.0000
## -0.0050940 0.00977983 Inf -0.521 1.0000
## -0.6713077 0.04037560 Inf -16.627 <.0001
## -0.1819999 0.03030139 Inf -6.006 <.0001
## -0.0017974 0.00442192 Inf -0.406 1.0000
## -0.0005063 0.00479558 Inf -0.106 1.0000
## -0.0184764 0.00854682 Inf -2.162 1.0000
## -0.0415333 0.01535831 Inf -2.704 0.9999
## -0.0024759 0.00471584 Inf -0.525 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0006846 0.00463263 Inf -0.148 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1201236 0.05395945 Inf -2.226 1.0000
## -0.0052593 0.00556341 Inf -0.945 1.0000
## -0.0023012 0.00476296 Inf -0.483 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0009349 0.00488761 Inf -0.191 1.0000
## -0.0635957 0.01777082 Inf -3.579 0.7224
## -0.0059845 0.00626237 Inf -0.956 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.2305172 0.06442594 Inf -3.578 0.7230
## 0.3434755 0.04419352 Inf 7.772 <.0001
## 0.3755377 0.04304087 Inf 8.725 <.0001
## 0.3770744 0.04369890 Inf 8.629 <.0001
## -0.2891393 0.05869056 Inf -4.926 0.0099
## 0.2001685 0.05226735 Inf 3.830 0.4709
## 0.3803710 0.04281978 Inf 8.883 <.0001
## 0.3816621 0.04286013 Inf 8.905 <.0001
## 0.3636920 0.04343838 Inf 8.373 <.0001
## 0.3406351 0.04527264 Inf 7.524 <.0001
## 0.3796925 0.04285105 Inf 8.861 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3814838 0.04284218 Inf 8.904 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3818386 0.04283506 Inf 8.914 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.2620448 0.06874066 Inf 3.812 0.4885
## 0.3769091 0.04295228 Inf 8.775 <.0001
## 0.3798672 0.04285628 Inf 8.864 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3812335 0.04287047 Inf 8.893 <.0001
## 0.3185727 0.04614632 Inf 6.904 <.0001
## 0.3761839 0.04304832 Inf 8.739 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3819019 0.04281247 Inf 8.920 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3448265 0.04444307 Inf 7.759 <.0001
## 0.3261640 0.04525872 Inf 7.207 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3551741 0.04743267 Inf 7.488 <.0001
## 0.3818386 0.04283506 Inf 8.914 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3819448 0.04279729 Inf 8.925 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3783479 0.04291407 Inf 8.816 <.0001
## 0.3634321 0.04366592 Inf 8.323 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3805845 0.04332912 Inf 8.784 <.0001
## 0.2940148 0.04782814 Inf 6.147 <.0001
## 0.3309772 0.04498040 Inf 7.358 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3357706 0.04500556 Inf 7.461 <.0001
## 0.3691396 0.04335653 Inf 8.514 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3816976 0.04283786 Inf 8.910 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3519225 0.04403297 Inf 7.992 <.0001
## 0.3079396 0.04804491 Inf 6.409 <.0001
## 0.3786822 0.04287085 Inf 8.833 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3813712 0.04284448 Inf 8.901 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.2285327 0.05201090 Inf 4.394 0.0906
## 0.3014567 0.04860863 Inf 6.202 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3812471 0.04284704 Inf 8.898 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.2930686 0.04789271 Inf 6.119 <.0001
## 0.3760082 0.04305490 Inf 8.733 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3774923 0.04293641 Inf 8.792 <.0001
## 0.3818015 0.04282036 Inf 8.916 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3792720 0.04289123 Inf 8.843 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3818537 0.04281324 Inf 8.919 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3303887 0.05316786 Inf 6.214 <.0001
## 0.3800400 0.04287330 Inf 8.864 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3754720 0.04299361 Inf 8.733 <.0001
## 0.2880291 0.04976608 Inf 5.788 0.0001
## -0.5133350 0.04663937 Inf -11.006 <.0001
## -0.3146758 0.06022699 Inf -5.225 0.0023
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3799125 0.04287621 Inf 8.861 <.0001
## 0.3818015 0.04282036 Inf 8.916 <.0001
## 0.3814262 0.04280439 Inf 8.911 <.0001
## 0.3817048 0.04285912 Inf 8.906 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3168101 0.05646109 Inf 5.611 0.0003
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3813873 0.04284415 Inf 8.902 <.0001
## 0.3812687 0.04288456 Inf 8.891 <.0001
## 0.3792177 0.04286019 Inf 8.848 <.0001
## 0.2171574 0.05427054 Inf 4.001 0.3131
## 0.3742737 0.04404894 Inf 8.497 <.0001
## 0.3774335 0.04293798 Inf 8.790 <.0001
## 0.3605253 0.04347184 Inf 8.293 <.0001
## -0.5855517 0.04301055 Inf -13.614 <.0001
## -0.5853748 0.04320810 Inf -13.548 <.0001
## 0.3524550 0.04400355 Inf 8.010 <.0001
## 0.3569736 0.04406934 Inf 8.100 <.0001
## 0.3795051 0.04285462 Inf 8.856 <.0001
## 0.3817048 0.04285912 Inf 8.906 <.0001
## 0.0707603 0.09435359 Inf 0.750 1.0000
## 0.3606788 0.04357842 Inf 8.277 <.0001
## 0.3764300 0.04293301 Inf 8.768 <.0001
## 0.3819046 0.04279783 Inf 8.923 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.1985157 0.05367053 Inf 3.699 0.6040
## 0.3565452 0.04409783 Inf 8.085 <.0001
## 0.3802591 0.04284053 Inf 8.876 <.0001
## 0.3817765 0.04285743 Inf 8.908 <.0001
## 0.3821684 0.04318908 Inf 8.849 <.0001
## 0.3266088 0.04560504 Inf 7.162 <.0001
## -0.1902960 0.05869021 Inf -3.242 0.9459
## 0.3819448 0.04279729 Inf 8.925 <.0001
## 0.3812007 0.04287128 Inf 8.892 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3415317 0.05049998 Inf 6.763 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3821684 0.04282863 Inf 8.923 <.0001
## 0.3821684 0.04286120 Inf 8.916 <.0001
## 0.3821684 0.04280827 Inf 8.927 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.3208229 0.05548971 Inf 5.782 0.0001
## 0.3802744 0.04286801 Inf 8.871 <.0001
## 0.3821684 0.04281415 Inf 8.926 <.0001
## 0.3821684 0.04279433 Inf 8.930 <.0001
## 0.3821684 0.04284837 Inf 8.919 <.0001
## 0.5739927 0.04956178 Inf 11.581 <.0001
## 0.6060549 0.04851437 Inf 12.492 <.0001
## 0.6075916 0.04909751 Inf 12.375 <.0001
## -0.0586221 0.06277334 Inf -0.934 1.0000
## 0.4306857 0.05688282 Inf 7.571 <.0001
## 0.6108882 0.04831303 Inf 12.644 <.0001
## 0.6121793 0.04834728 Inf 12.662 <.0001
## 0.5942092 0.04887788 Inf 12.157 <.0001
## 0.5711523 0.05052750 Inf 11.304 <.0001
## 0.6102097 0.04834153 Inf 12.623 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6120010 0.04833158 Inf 12.663 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6123558 0.04832485 Inf 12.672 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.4925620 0.07231587 Inf 6.811 <.0001
## 0.6074263 0.04843436 Inf 12.541 <.0001
## 0.6103844 0.04834597 Inf 12.625 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6117507 0.04835696 Inf 12.651 <.0001
## 0.5490899 0.05131771 Inf 10.700 <.0001
## 0.6067011 0.04852031 Inf 12.504 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6124191 0.04830475 Inf 12.678 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.5753436 0.04978384 Inf 11.557 <.0001
## 0.5566812 0.05051946 Inf 11.019 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5856912 0.05246499 Inf 11.163 <.0001
## 0.6123558 0.04832485 Inf 12.672 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6124620 0.04829124 Inf 12.683 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6088651 0.04839891 Inf 12.580 <.0001
## 0.5939493 0.04908040 Inf 12.102 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6111017 0.04876478 Inf 12.532 <.0001
## 0.5245320 0.05283779 Inf 9.927 <.0001
## 0.5614944 0.05026902 Inf 11.170 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5662878 0.05029007 Inf 11.260 <.0001
## 0.5996568 0.04880070 Inf 12.288 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6122148 0.04832750 Inf 12.668 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5824397 0.04941460 Inf 11.787 <.0001
## 0.5384567 0.05303298 Inf 10.153 <.0001
## 0.6091994 0.04836023 Inf 12.597 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6118884 0.04833375 Inf 12.660 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.4590499 0.05664990 Inf 8.103 <.0001
## 0.5319739 0.05354483 Inf 9.935 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6117643 0.04833617 Inf 12.656 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5235857 0.05289629 Inf 9.898 <.0001
## 0.6065254 0.04852634 Inf 12.499 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6080095 0.04841965 Inf 12.557 <.0001
## 0.6123187 0.04831186 Inf 12.674 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6097892 0.04837763 Inf 12.605 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6123709 0.04830549 Inf 12.677 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5609058 0.05771114 Inf 9.719 <.0001
## 0.6105572 0.04836085 Inf 12.625 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6059892 0.04847252 Inf 12.502 <.0001
## 0.5185463 0.05459843 Inf 9.497 <.0001
## -0.2828178 0.05166107 Inf -5.474 0.0006
## -0.0841586 0.06420902 Inf -1.311 1.0000
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.6104297 0.04836358 Inf 12.622 <.0001
## 0.6123187 0.04831186 Inf 12.674 <.0001
## 0.6119434 0.04829815 Inf 12.670 <.0001
## 0.6122219 0.04834633 Inf 12.663 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5473272 0.06076110 Inf 9.008 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6119045 0.04833344 Inf 12.660 <.0001
## 0.6117858 0.04836940 Inf 12.648 <.0001
## 0.6097349 0.04835017 Inf 12.611 <.0001
## 0.4476745 0.05873038 Inf 7.623 <.0001
## 0.6047909 0.04941216 Inf 12.240 <.0001
## 0.6079507 0.04842112 Inf 12.555 <.0001
## 0.5910425 0.04890991 Inf 12.084 <.0001
## -0.3550345 0.04843907 Inf -7.330 <.0001
## -0.3548576 0.04861439 Inf -7.299 <.0001
## 0.5829722 0.04938809 Inf 11.804 <.0001
## 0.5874907 0.04944406 Inf 11.882 <.0001
## 0.6100223 0.04834491 Inf 12.618 <.0001
## 0.6122219 0.04834633 Inf 12.663 <.0001
## 0.3012774 0.09697686 Inf 3.107 0.9806
## 0.5911960 0.04900456 Inf 12.064 <.0001
## 0.6069472 0.04841778 Inf 12.536 <.0001
## 0.6124217 0.04829177 Inf 12.682 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.4290329 0.05817461 Inf 7.375 <.0001
## 0.5870624 0.04946973 Inf 11.867 <.0001
## 0.6107762 0.04833156 Inf 12.637 <.0001
## 0.6122937 0.04834475 Inf 12.665 <.0001
## 0.6126856 0.04863853 Inf 12.597 <.0001
## 0.5571260 0.05082984 Inf 10.961 <.0001
## 0.0402211 0.06278596 Inf 0.641 1.0000
## 0.6124620 0.04829124 Inf 12.683 <.0001
## 0.6117179 0.04835771 Inf 12.650 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5720489 0.05525966 Inf 10.352 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.6126856 0.04831875 Inf 12.680 <.0001
## 0.6126856 0.04834762 Inf 12.673 <.0001
## 0.6126856 0.04830070 Inf 12.685 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.5513400 0.05985891 Inf 9.211 <.0001
## 0.6107916 0.04835590 Inf 12.631 <.0001
## 0.6126856 0.04830592 Inf 12.683 <.0001
## 0.6126856 0.04828835 Inf 12.688 <.0001
## 0.6126856 0.04833625 Inf 12.675 <.0001
## 0.0320622 0.01246536 Inf 2.572 1.0000
## 0.0335989 0.01457962 Inf 2.305 1.0000
## -0.6326148 0.04184347 Inf -15.119 <.0001
## -0.1433070 0.03214039 Inf -4.459 0.0712
## 0.0368955 0.01169352 Inf 3.155 0.9711
## 0.0381866 0.01184450 Inf 3.224 0.9523
## 0.0202165 0.01375095 Inf 1.470 1.0000
## -0.0028404 0.01873441 Inf -0.152 1.0000
## 0.0362169 0.01180543 Inf 3.068 0.9862
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0380083 0.01177882 Inf 3.227 0.9513
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0383630 0.01175405 Inf 3.264 0.9378
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0814308 0.05500965 Inf -1.480 1.0000
## 0.0334336 0.01215973 Inf 2.750 0.9997
## 0.0363917 0.01182494 Inf 3.078 0.9849
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0377580 0.01188051 Inf 3.178 0.9656
## -0.0249028 0.02074728 Inf -1.200 1.0000
## 0.0327084 0.01249278 Inf 2.618 1.0000
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0384263 0.01167167 Inf 3.292 0.9258
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0013509 0.01663328 Inf 0.081 1.0000
## -0.0173115 0.01869289 Inf -0.926 1.0000
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0116985 0.02348794 Inf 0.498 1.0000
## 0.0383630 0.01175405 Inf 3.264 0.9378
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0384693 0.01161599 Inf 3.312 0.9167
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0348724 0.01202817 Inf 2.899 0.9977
## 0.0199566 0.01445321 Inf 1.381 1.0000
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0371090 0.01343999 Inf 2.761 0.9996
## -0.0494607 0.02425524 Inf -2.039 1.0000
## -0.0124983 0.01801088 Inf -0.694 1.0000
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0077049 0.01807631 Inf -0.426 1.0000
## 0.0256641 0.01350069 Inf 1.901 1.0000
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0382221 0.01176380 Inf 3.249 0.9435
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0084470 0.01551153 Inf 0.545 1.0000
## -0.0355360 0.02468148 Inf -1.440 1.0000
## 0.0352067 0.01187406 Inf 2.965 0.9950
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0378957 0.01178683 Inf 3.215 0.9551
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.1149428 0.03171855 Inf -3.624 0.6791
## -0.0420188 0.02576079 Inf -1.631 1.0000
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0377716 0.01179574 Inf 3.202 0.9590
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0504070 0.02438224 Inf -2.067 1.0000
## 0.0325327 0.01251498 Inf 2.599 1.0000
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0340168 0.01210518 Inf 2.810 0.9993
## 0.0383260 0.01170022 Inf 3.276 0.9330
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0357965 0.01194919 Inf 2.996 0.9931
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0383782 0.01167434 Inf 3.287 0.9280
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0130869 0.03358520 Inf -0.390 1.0000
## 0.0365645 0.01188698 Inf 3.076 0.9851
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0319964 0.01230102 Inf 2.601 1.0000
## -0.0554464 0.02788247 Inf -1.989 1.0000
## -0.8568105 0.02197767 Inf -38.986 <.0001
## -0.6581513 0.04397555 Inf -14.966 <.0001
## 0.0386929 0.01298602 Inf 2.980 0.9942
## 0.0364370 0.01189709 Inf 3.063 0.9868
## 0.0383260 0.01170022 Inf 3.276 0.9330
## 0.0379506 0.01164042 Inf 3.260 0.9392
## 0.0382292 0.01184098 Inf 3.229 0.9507
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0266655 0.03858499 Inf -0.691 1.0000
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0379118 0.01178568 Inf 3.217 0.9546
## 0.0377931 0.01193136 Inf 3.168 0.9683
## 0.0357422 0.01183711 Inf 3.019 0.9913
## -0.1263182 0.03530293 Inf -3.578 0.7229
## 0.0307982 0.01559155 Inf 1.975 1.0000
## 0.0339580 0.01211060 Inf 2.804 0.9993
## 0.0170498 0.01385095 Inf 1.231 1.0000
## -0.9290272 0.01248426 Inf -74.416 <.0001
## -0.9288503 0.01314912 Inf -70.640 <.0001
## 0.0089795 0.01542843 Inf 0.582 1.0000
## 0.0134980 0.01562059 Inf 0.864 1.0000
## 0.0360296 0.01181781 Inf 3.049 0.9884
## 0.0382292 0.01184098 Inf 3.229 0.9507
## -0.2727153 0.08488201 Inf -3.213 0.9558
## 0.0172033 0.01418214 Inf 1.213 1.0000
## 0.0329545 0.01209015 Inf 2.726 0.9998
## 0.0384290 0.01161785 Inf 3.308 0.9187
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.1449598 0.03437538 Inf -4.217 0.1663
## 0.0130696 0.01570026 Inf 0.832 1.0000
## 0.0367835 0.01176895 Inf 3.125 0.9773
## 0.0383010 0.01183509 Inf 3.236 0.9481
## 0.0386929 0.01298602 Inf 2.980 0.9942
## -0.0168667 0.01951664 Inf -0.864 1.0000
## -0.5337716 0.04183022 Inf -12.760 <.0001
## 0.0384693 0.01161599 Inf 3.312 0.9167
## 0.0377252 0.01188332 Inf 3.175 0.9665
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0019438 0.02918284 Inf -0.067 1.0000
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0386929 0.01173167 Inf 3.298 0.9232
## 0.0386929 0.01185000 Inf 3.265 0.9373
## 0.0386929 0.01165711 Inf 3.319 0.9130
## 0.0386929 0.01180353 Inf 3.278 0.9320
## -0.0226527 0.03714974 Inf -0.610 1.0000
## 0.0367989 0.01186863 Inf 3.101 0.9816
## 0.0386929 0.01167870 Inf 3.313 0.9161
## 0.0386929 0.01160581 Inf 3.334 0.9055
## 0.0386929 0.01180353 Inf 3.278 0.9320
## 0.0015366 0.01058950 Inf 0.145 1.0000
## -0.6646770 0.04059085 Inf -16.375 <.0001
## -0.1753692 0.03056383 Inf -5.738 0.0001
## 0.0048332 0.00600930 Inf 0.804 1.0000
## 0.0061244 0.00629151 Inf 0.973 1.0000
## -0.0118457 0.00945104 Inf -1.253 1.0000
## -0.0349026 0.01587193 Inf -2.199 1.0000
## 0.0041547 0.00622764 Inf 0.667 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0059461 0.00616789 Inf 0.964 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0063008 0.00611859 Inf 1.030 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.1134930 0.05410637 Inf -2.098 1.0000
## 0.0013714 0.00688773 Inf 0.199 1.0000
## 0.0043295 0.00626368 Inf 0.691 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0056958 0.00636122 Inf 0.895 1.0000
## -0.0569650 0.01821346 Inf -3.128 0.9769
## 0.0006462 0.00746277 Inf 0.087 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0063641 0.00595846 Inf 1.068 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## -0.0307113 0.01332329 Inf -2.305 1.0000
## -0.0493737 0.01583082 Inf -3.119 0.9785
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0203637 0.02126575 Inf -0.958 1.0000
## 0.0063008 0.00611859 Inf 1.030 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0064071 0.00584841 Inf 1.096 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0028102 0.00664636 Inf 0.423 1.0000
## -0.0121056 0.01044700 Inf -1.159 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0050468 0.00894388 Inf 0.564 1.0000
## -0.0815229 0.02213034 Inf -3.684 0.6192
## -0.0445605 0.01501705 Inf -2.967 0.9949
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0397671 0.01509273 Inf -2.635 1.0000
## -0.0063981 0.00906971 Inf -0.705 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0061599 0.00613805 Inf 1.004 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0236153 0.01188524 Inf -1.987 1.0000
## -0.0675982 0.02259525 Inf -2.992 0.9934
## 0.0031445 0.00636164 Inf 0.494 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0058335 0.00618377 Inf 0.943 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.1470050 0.03012269 Inf -4.880 0.0122
## -0.0740811 0.02377025 Inf -3.117 0.9789
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0057094 0.00620138 Inf 0.921 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0824692 0.02226952 Inf -3.703 0.5994
## 0.0004705 0.00750053 Inf 0.063 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0019545 0.00678846 Inf 0.288 1.0000
## 0.0062638 0.00601474 Inf 1.041 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0037342 0.00649804 Inf 0.575 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0063160 0.00596395 Inf 1.059 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0451491 0.03207951 Inf -1.407 1.0000
## 0.0045023 0.00637920 Inf 0.706 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0000658 0.00713992 Inf -0.009 1.0000
## -0.0875086 0.02605534 Inf -3.359 0.8920
## -0.8888727 0.01945472 Inf -45.689 <.0001
## -0.6902135 0.04278276 Inf -16.133 <.0001
## 0.0066307 0.00823983 Inf 0.805 1.0000
## 0.0043748 0.00639864 Inf 0.684 1.0000
## 0.0062638 0.00601474 Inf 1.041 1.0000
## 0.0058884 0.00589961 Inf 0.998 1.0000
## 0.0061670 0.00628466 Inf 0.981 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0587277 0.03728404 Inf -1.575 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0058496 0.00618149 Inf 0.946 1.0000
## 0.0057309 0.00645551 Inf 0.888 1.0000
## 0.0036800 0.00628981 Inf 0.585 1.0000
## -0.1583804 0.03387543 Inf -4.675 0.0300
## -0.0012640 0.01195098 Inf -0.106 1.0000
## 0.0018957 0.00679838 Inf 0.279 1.0000
## -0.0150124 0.00960251 Inf -1.563 1.0000
## -0.9610894 0.00727264 Inf -132.151 <.0001
## -0.9609125 0.00836211 Inf -114.913 <.0001
## -0.0230827 0.01177589 Inf -1.960 1.0000
## -0.0185642 0.01202046 Inf -1.544 1.0000
## 0.0039674 0.00625200 Inf 0.635 1.0000
## 0.0061670 0.00628466 Inf 0.981 1.0000
## -0.3047775 0.08429148 Inf -3.616 0.6870
## -0.0148589 0.01007406 Inf -1.475 1.0000
## 0.0008923 0.00676618 Inf 0.132 1.0000
## 0.0063668 0.00585232 Inf 1.088 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.1770220 0.03290591 Inf -5.380 0.0010
## -0.0189926 0.01212441 Inf -1.566 1.0000
## 0.0047213 0.00615535 Inf 0.767 1.0000
## 0.0062388 0.00627319 Inf 0.995 1.0000
## 0.0066307 0.00823983 Inf 0.805 1.0000
## -0.0489289 0.01679535 Inf -2.913 0.9972
## -0.5658338 0.04058840 Inf -13.941 <.0001
## 0.0064071 0.00584841 Inf 1.096 1.0000
## 0.0056630 0.00636662 Inf 0.889 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0340060 0.02743280 Inf -1.240 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## 0.0066307 0.00607373 Inf 1.092 1.0000
## 0.0066307 0.00629926 Inf 1.053 1.0000
## 0.0066307 0.00592842 Inf 1.118 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.0547149 0.03579608 Inf -1.529 1.0000
## 0.0047367 0.00634379 Inf 0.747 1.0000
## 0.0066307 0.00597077 Inf 1.111 1.0000
## 0.0066307 0.00582692 Inf 1.138 1.0000
## 0.0066307 0.00621139 Inf 1.067 1.0000
## -0.6662137 0.04128558 Inf -16.137 <.0001
## -0.1769059 0.03148567 Inf -5.619 0.0003
## 0.0032966 0.00965316 Inf 0.342 1.0000
## 0.0045877 0.00983103 Inf 0.467 1.0000
## -0.0133823 0.01210190 Inf -1.106 1.0000
## -0.0364393 0.01758133 Inf -2.073 1.0000
## 0.0026181 0.00979073 Inf 0.267 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0044094 0.00975242 Inf 0.452 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0047642 0.00972123 Inf 0.490 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.1150296 0.05463259 Inf -2.106 1.0000
## -0.0001653 0.01022389 Inf -0.016 1.0000
## 0.0027928 0.00981366 Inf 0.285 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0041591 0.00987588 Inf 0.421 1.0000
## -0.0585017 0.01972155 Inf -2.966 0.9950
## -0.0008905 0.01061993 Inf -0.084 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0048275 0.00962123 Inf 0.502 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## -0.0322479 0.01531953 Inf -2.105 1.0000
## -0.0509104 0.01754474 Inf -2.902 0.9976
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0219003 0.02256965 Inf -0.970 1.0000
## 0.0047642 0.00972123 Inf 0.490 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0048704 0.00955346 Inf 0.510 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0012735 0.01006255 Inf 0.127 1.0000
## -0.0136423 0.01289475 Inf -1.058 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0035101 0.01170743 Inf 0.300 1.0000
## -0.0830596 0.02338744 Inf -3.551 0.7474
## -0.0460972 0.01681397 Inf -2.742 0.9997
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0413038 0.01688142 Inf -2.447 1.0000
## -0.0079348 0.01180576 Inf -0.672 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0046232 0.00973353 Inf 0.475 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0251519 0.01408627 Inf -1.786 1.0000
## -0.0691348 0.02382773 Inf -2.901 0.9976
## 0.0016078 0.00987673 Inf 0.163 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0042968 0.00976250 Inf 0.440 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.1485417 0.03105781 Inf -4.783 0.0189
## -0.0756177 0.02494480 Inf -3.031 0.9902
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0041727 0.00977369 Inf 0.427 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0840058 0.02351919 Inf -3.572 0.7288
## -0.0010661 0.01064653 Inf -0.100 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0004179 0.01015715 Inf 0.041 1.0000
## 0.0047271 0.00965621 Inf 0.490 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0021976 0.00996500 Inf 0.221 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0047793 0.00962464 Inf 0.497 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0466857 0.03295897 Inf -1.416 1.0000
## 0.0029656 0.00988775 Inf 0.300 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0016024 0.01039574 Inf -0.154 1.0000
## -0.0890453 0.02713121 Inf -3.282 0.9303
## -0.8904094 0.02086329 Inf -42.678 <.0001
## -0.6917502 0.04344227 Inf -15.923 <.0001
## 0.0050940 0.01117848 Inf 0.456 1.0000
## 0.0028381 0.00990033 Inf 0.287 1.0000
## 0.0047271 0.00965621 Inf 0.490 1.0000
## 0.0043518 0.00958502 Inf 0.454 1.0000
## 0.0046304 0.00982664 Inf 0.471 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0602643 0.03804353 Inf -1.584 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0043129 0.00976105 Inf 0.442 1.0000
## 0.0041943 0.00993687 Inf 0.422 1.0000
## 0.0021434 0.00983051 Inf 0.218 1.0000
## -0.1599170 0.03470953 Inf -4.607 0.0397
## -0.0028007 0.01413943 Inf -0.198 1.0000
## 0.0003591 0.01016380 Inf 0.035 1.0000
## -0.0165490 0.01222093 Inf -1.354 1.0000
## -0.9626261 0.01047830 Inf -91.868 <.0001
## -0.9624492 0.01126179 Inf -85.462 <.0001
## -0.0246194 0.01399409 Inf -1.759 1.0000
## -0.0201008 0.01420013 Inf -1.416 1.0000
## 0.0024307 0.00980629 Inf 0.248 1.0000
## 0.0046304 0.00982664 Inf 0.471 1.0000
## -0.3063141 0.08462965 Inf -3.619 0.6834
## -0.0163956 0.01259481 Inf -1.302 1.0000
## -0.0006443 0.01014249 Inf -0.064 1.0000
## 0.0048302 0.00955586 Inf 0.505 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.1785587 0.03376385 Inf -5.288 0.0017
## -0.0205292 0.01428827 Inf -1.437 1.0000
## 0.0031847 0.00974478 Inf 0.327 1.0000
## 0.0047021 0.00981928 Inf 0.479 1.0000
## 0.0050940 0.01117848 Inf 0.456 1.0000
## -0.0504656 0.01841972 Inf -2.740 0.9997
## -0.5673704 0.04128396 Inf -13.743 <.0001
## 0.0048704 0.00955346 Inf 0.510 1.0000
## 0.0041263 0.00987937 Inf 0.418 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0355427 0.02845596 Inf -1.249 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.0050940 0.00969298 Inf 0.526 1.0000
## 0.0050940 0.00983587 Inf 0.518 1.0000
## 0.0050940 0.00960260 Inf 0.530 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## -0.0562515 0.03658643 Inf -1.538 1.0000
## 0.0032000 0.00986489 Inf 0.324 1.0000
## 0.0050940 0.00962879 Inf 0.529 1.0000
## 0.0050940 0.00954026 Inf 0.534 1.0000
## 0.0050940 0.00977983 Inf 0.521 1.0000
## 0.4893078 0.05030188 Inf 9.727 <.0001
## 0.6695103 0.04034842 Inf 16.593 <.0001
## 0.6708014 0.04038898 Inf 16.609 <.0001
## 0.6528314 0.04102769 Inf 15.912 <.0001
## 0.6297744 0.04298328 Inf 14.652 <.0001
## 0.6688318 0.04038278 Inf 16.562 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6706231 0.04037025 Inf 16.612 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6709779 0.04036206 Inf 16.624 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.5511841 0.06726320 Inf 8.194 <.0001
## 0.6660484 0.04049476 Inf 16.448 <.0001
## 0.6690065 0.04038803 Inf 16.564 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6703728 0.04040071 Inf 16.593 <.0001
## 0.6077120 0.04391118 Inf 13.840 <.0001
## 0.6653232 0.04059775 Inf 16.388 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6710412 0.04033798 Inf 16.635 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6339658 0.04210610 Inf 15.056 <.0001
## 0.6153033 0.04297512 Inf 14.318 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6443134 0.04524310 Inf 14.241 <.0001
## 0.6709779 0.04036206 Inf 16.624 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6710841 0.04032178 Inf 16.643 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6674872 0.04045189 Inf 16.501 <.0001
## 0.6525714 0.04126881 Inf 15.813 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6697238 0.04088819 Inf 16.379 <.0001
## 0.5831541 0.04567914 Inf 12.766 <.0001
## 0.6201165 0.04268006 Inf 14.529 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6249099 0.04270444 Inf 14.633 <.0001
## 0.6582789 0.04093442 Inf 16.081 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6708369 0.04036529 Inf 16.619 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6410618 0.04166786 Inf 15.385 <.0001
## 0.5970789 0.04590447 Inf 13.007 <.0001
## 0.6678215 0.04040549 Inf 16.528 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6705105 0.04037289 Inf 16.608 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.5176720 0.05003906 Inf 10.345 <.0001
## 0.5905960 0.04649504 Inf 12.702 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6703864 0.04037583 Inf 16.604 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.5822079 0.04574681 Inf 12.727 <.0001
## 0.6651476 0.04060500 Inf 16.381 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6666316 0.04047698 Inf 16.469 <.0001
## 0.6709408 0.04034652 Inf 16.629 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6684113 0.04042612 Inf 16.534 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6709930 0.04033888 Inf 16.634 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6195280 0.05123664 Inf 12.091 <.0001
## 0.6691793 0.04040579 Inf 16.561 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6646113 0.04054083 Inf 16.394 <.0001
## 0.5771684 0.04770479 Inf 12.099 <.0001
## -0.2241957 0.04428315 Inf -5.063 0.0052
## -0.0255365 0.05844134 Inf -0.437 1.0000
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6690518 0.04040909 Inf 16.557 <.0001
## 0.6709408 0.04034652 Inf 16.629 <.0001
## 0.6705655 0.04033024 Inf 16.627 <.0001
## 0.6708441 0.04038783 Inf 16.610 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6059494 0.05464982 Inf 11.088 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6705266 0.04037251 Inf 16.608 <.0001
## 0.6704080 0.04041560 Inf 16.588 <.0001
## 0.6683570 0.04039328 Inf 16.546 <.0001
## 0.5062967 0.05238251 Inf 9.665 <.0001
## 0.6634130 0.04166011 Inf 15.924 <.0001
## 0.6665728 0.04047875 Inf 16.467 <.0001
## 0.6496646 0.04106652 Inf 15.820 <.0001
## -0.2964124 0.04048657 Inf -7.321 <.0001
## -0.2962355 0.04069612 Inf -7.279 <.0001
## 0.6415943 0.04163633 Inf 15.409 <.0001
## 0.6461129 0.04170194 Inf 15.494 <.0001
## 0.6686444 0.04038688 Inf 16.556 <.0001
## 0.6708441 0.04038783 Inf 16.610 <.0001
## 0.3598996 0.09326669 Inf 3.859 0.4423
## 0.6498181 0.04117917 Inf 15.780 <.0001
## 0.6655693 0.04047508 Inf 16.444 <.0001
## 0.6710439 0.04032243 Inf 16.642 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.4876550 0.05175813 Inf 9.422 <.0001
## 0.6456845 0.04173245 Inf 15.472 <.0001
## 0.6693984 0.04037064 Inf 16.581 <.0001
## 0.6709158 0.04038591 Inf 16.613 <.0001
## 0.6713077 0.04073699 Inf 16.479 <.0001
## 0.6157481 0.04333953 Inf 14.208 <.0001
## 0.0988433 0.05687853 Inf 1.738 1.0000
## 0.6710841 0.04032178 Inf 16.643 <.0001
## 0.6703400 0.04040163 Inf 16.592 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6306710 0.04845778 Inf 13.015 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6713077 0.04035465 Inf 16.635 <.0001
## 0.6713077 0.04038921 Inf 16.621 <.0001
## 0.6713077 0.04033303 Inf 16.644 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.6099622 0.05364479 Inf 11.370 <.0001
## 0.6694137 0.04039978 Inf 16.570 <.0001
## 0.6713077 0.04033928 Inf 16.642 <.0001
## 0.6713077 0.04031824 Inf 16.650 <.0001
## 0.6713077 0.04037560 Inf 16.627 <.0001
## 0.1802025 0.03025829 Inf 5.955 <.0001
## 0.1814936 0.03031725 Inf 5.986 <.0001
## 0.1635235 0.03110828 Inf 5.257 0.0020
## 0.1404666 0.03360744 Inf 4.180 0.1873
## 0.1795239 0.03030156 Inf 5.925 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1813153 0.03029161 Inf 5.986 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1816700 0.03028207 Inf 5.999 <.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.0618762 0.06168010 Inf 1.003 1.0000
## 0.1767406 0.03044074 Inf 5.806 0.0001
## 0.1796987 0.03030920 Inf 5.929 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1810650 0.03033124 Inf 5.970 <.0001
## 0.1184042 0.03476862 Inf 3.405 0.8629
## 0.1760154 0.03057516 Inf 5.757 0.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1817334 0.03025020 Inf 6.008 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1446579 0.03248337 Inf 4.453 0.0727
## 0.1259955 0.03358350 Inf 3.752 0.5498
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1550055 0.03647260 Inf 4.250 0.1494
## 0.1816700 0.03028207 Inf 5.999 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1817763 0.03022877 Inf 6.013 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1781794 0.03038873 Inf 5.863 0.0001
## 0.1632636 0.03142499 Inf 5.195 0.0027
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1804160 0.03097518 Inf 5.825 0.0001
## 0.0938463 0.03696877 Inf 2.539 1.0000
## 0.1308087 0.03320895 Inf 3.939 0.3670
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1356021 0.03324476 Inf 4.079 0.2531
## 0.1689711 0.03099933 Inf 5.451 0.0007
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1815291 0.03028582 Inf 5.994 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1517540 0.03192418 Inf 4.754 0.0215
## 0.1077710 0.03725001 Inf 2.893 0.9978
## 0.1785137 0.03032814 Inf 5.886 0.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1812027 0.03029470 Inf 5.981 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.0283642 0.04224296 Inf 0.671 1.0000
## 0.1012882 0.03797365 Inf 2.667 0.9999
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1810786 0.03029814 Inf 5.977 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.0929000 0.03705222 Inf 2.507 1.0000
## 0.1758397 0.03058420 Inf 5.749 0.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1773238 0.03041911 Inf 5.829 0.0001
## 0.1816330 0.03026121 Inf 6.002 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1791035 0.03035776 Inf 5.900 0.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1816852 0.03025122 Inf 6.006 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1302201 0.04366241 Inf 2.982 0.9940
## 0.1798715 0.03033350 Inf 5.930 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1753034 0.03049716 Inf 5.748 0.0001
## 0.0878606 0.03944366 Inf 2.228 1.0000
## -0.7135035 0.03553448 Inf -20.079 <.0001
## -0.5148443 0.05208936 Inf -9.884 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1797440 0.03033744 Inf 5.925 <.0001
## 0.1816330 0.03026121 Inf 6.002 <.0001
## 0.1812577 0.03023805 Inf 5.994 <.0001
## 0.1815362 0.03031588 Inf 5.988 <.0001
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1166415 0.04761518 Inf 2.450 1.0000
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1812188 0.03029425 Inf 5.982 <.0001
## 0.1811001 0.03035120 Inf 5.967 <.0001
## 0.1790492 0.03031381 Inf 5.907 0.0001
## 0.0169888 0.04499679 Inf 0.378 1.0000
## 0.1741052 0.03196629 Inf 5.447 0.0007
## 0.1772650 0.03042126 Inf 5.827 0.0001
## 0.1603568 0.03115217 Inf 5.148 0.0034
## -0.7857202 0.03058095 Inf -25.693 <.0001
## -0.7855433 0.03085838 Inf -25.456 <.0001
## 0.1522865 0.03188394 Inf 4.776 0.0194
## 0.1568050 0.03197787 Inf 4.904 0.0110
## 0.1793366 0.03030634 Inf 5.917 <.0001
## 0.1815362 0.03031588 Inf 5.988 <.0001
## -0.1294083 0.08935111 Inf -1.448 1.0000
## 0.1605103 0.03130086 Inf 5.128 0.0038
## 0.1762615 0.03041292 Inf 5.796 0.0001
## 0.1817360 0.03022948 Inf 6.012 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## -0.0016528 0.04427309 Inf -0.037 1.0000
## 0.1563766 0.03201681 Inf 4.884 0.0120
## 0.1800905 0.03028749 Inf 5.946 <.0001
## 0.1816080 0.03031360 Inf 5.991 <.0001
## 0.1819999 0.03078128 Inf 5.913 0.0001
## 0.1264403 0.03404890 Inf 3.713 0.5890
## -0.3904646 0.05028887 Inf -7.764 <.0001
## 0.1817763 0.03022877 Inf 6.013 <.0001
## 0.1810322 0.03033233 Inf 5.968 <.0001
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1413632 0.04037480 Inf 3.501 0.7910
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1819999 0.03027347 Inf 6.012 <.0001
## 0.1819999 0.03031952 Inf 6.003 <.0001
## 0.1819999 0.03024465 Inf 6.018 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.1206543 0.04645983 Inf 2.597 1.0000
## 0.1801059 0.03032637 Inf 5.939 <.0001
## 0.1819999 0.03025298 Inf 6.016 <.0001
## 0.1819999 0.03022492 Inf 6.022 <.0001
## 0.1819999 0.03030139 Inf 6.006 <.0001
## 0.0012911 0.00453462 Inf 0.285 1.0000
## -0.0166789 0.00839786 Inf -1.986 1.0000
## -0.0397359 0.01527372 Inf -2.602 1.0000
## -0.0006785 0.00444888 Inf -0.153 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## 0.0011128 0.00436181 Inf 0.255 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0014676 0.00429117 Inf 0.342 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.1183262 0.05393501 Inf -2.194 1.0000
## -0.0034619 0.00533752 Inf -0.649 1.0000
## -0.0005038 0.00449891 Inf -0.112 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0008625 0.00463156 Inf 0.186 1.0000
## -0.0617983 0.01769686 Inf -3.492 0.7986
## -0.0041871 0.00606226 Inf -0.691 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0015309 0.00405947 Inf 0.377 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## -0.0355445 0.01260380 Inf -2.820 0.9992
## -0.0542070 0.01523294 Inf -3.559 0.7410
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0251969 0.02082087 Inf -1.210 1.0000
## 0.0014676 0.00429117 Inf 0.342 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0015738 0.00389607 Inf 0.404 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0020231 0.00502020 Inf -0.403 1.0000
## -0.0169389 0.00950496 Inf -1.782 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0002135 0.00780954 Inf 0.027 1.0000
## -0.0863562 0.02170799 Inf -3.978 0.3327
## -0.0493938 0.01438480 Inf -3.434 0.8434
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0446004 0.01446313 Inf -3.084 0.9841
## -0.0112314 0.00796269 Inf -1.411 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## 0.0013266 0.00431913 Inf 0.307 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0284485 0.01107065 Inf -2.570 1.0000
## -0.0724314 0.02218141 Inf -3.265 0.9372
## -0.0016888 0.00463616 Inf -0.364 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## 0.0010002 0.00438442 Inf 0.228 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.1518383 0.02981328 Inf -5.093 0.0045
## -0.0789143 0.02337741 Inf -3.376 0.8818
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## 0.0008761 0.00440945 Inf 0.199 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0873024 0.02184988 Inf -3.996 0.3180
## -0.0043627 0.00610888 Inf -0.714 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## -0.0028787 0.00520802 Inf -0.553 1.0000
## 0.0014305 0.00414182 Inf 0.345 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0010990 0.00482075 Inf -0.228 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0014827 0.00406761 Inf 0.365 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0499823 0.03178849 Inf -1.572 1.0000
## -0.0003310 0.00465814 Inf -0.071 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0048990 0.00566092 Inf -0.865 1.0000
## -0.0923419 0.02569765 Inf -3.593 0.7085
## -0.8937060 0.01893581 Inf -47.197 <.0001
## -0.6950468 0.04255221 Inf -16.334 <.0001
## 0.0017974 0.00699048 Inf 0.257 1.0000
## -0.0004585 0.00468492 Inf -0.098 1.0000
## 0.0014305 0.00414182 Inf 0.345 1.0000
## 0.0010552 0.00397351 Inf 0.266 1.0000
## 0.0013338 0.00452505 Inf 0.295 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0635609 0.03703447 Inf -1.716 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0010163 0.00438118 Inf 0.232 1.0000
## 0.0008977 0.00476018 Inf 0.189 1.0000
## -0.0011532 0.00453627 Inf -0.254 1.0000
## -0.1632136 0.03360038 Inf -4.857 0.0135
## -0.0060973 0.01113144 Inf -0.548 1.0000
## -0.0029375 0.00522103 Inf -0.563 1.0000
## -0.0198456 0.00856970 Inf -2.316 1.0000
## -0.9659227 0.00577402 Inf -167.288 <.0001
## -0.9657458 0.00709724 Inf -136.073 <.0001
## -0.0279160 0.01095300 Inf -2.549 1.0000
## -0.0233974 0.01121398 Inf -2.086 1.0000
## -0.0008659 0.00448323 Inf -0.193 1.0000
## 0.0013338 0.00452505 Inf 0.295 1.0000
## -0.3096107 0.08417970 Inf -3.678 0.6251
## -0.0196922 0.00909489 Inf -2.165 1.0000
## -0.0039409 0.00518034 Inf -0.761 1.0000
## 0.0015336 0.00390201 Inf 0.393 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.1818553 0.03262227 Inf -5.575 0.0004
## -0.0238258 0.01132550 Inf -2.104 1.0000
## -0.0001119 0.00434615 Inf -0.026 1.0000
## 0.0014055 0.00450898 Inf 0.312 1.0000
## 0.0017974 0.00699048 Inf 0.257 1.0000
## -0.0537622 0.01623298 Inf -3.312 0.9167
## -0.5706670 0.04034862 Inf -14.143 <.0001
## 0.0015738 0.00389607 Inf 0.404 1.0000
## 0.0008297 0.00463903 Inf 0.179 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0388393 0.02709100 Inf -1.434 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## 0.0017974 0.00422637 Inf 0.425 1.0000
## 0.0017974 0.00454452 Inf 0.396 1.0000
## 0.0017974 0.00401475 Inf 0.448 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0595481 0.03553593 Inf -1.676 1.0000
## -0.0000966 0.00460915 Inf -0.021 1.0000
## 0.0017974 0.00407701 Inf 0.441 1.0000
## 0.0017974 0.00386328 Inf 0.465 1.0000
## 0.0017974 0.00442192 Inf 0.406 1.0000
## -0.0179701 0.00860432 Inf -2.088 1.0000
## -0.0410270 0.01538976 Inf -2.666 0.9999
## -0.0019696 0.00482156 Inf -0.409 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0001783 0.00474053 Inf -0.038 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0001765 0.00467545 Inf 0.038 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.1196173 0.05396829 Inf -2.216 1.0000
## -0.0047530 0.00565290 Inf -0.841 1.0000
## -0.0017949 0.00486768 Inf -0.369 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## -0.0004286 0.00498995 Inf -0.086 1.0000
## -0.0630894 0.01779775 Inf -3.545 0.7534
## -0.0054782 0.00634192 Inf -0.864 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0002398 0.00446371 Inf 0.054 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0368356 0.01274391 Inf -2.890 0.9979
## -0.0554981 0.01534983 Inf -3.616 0.6872
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0264880 0.02090550 Inf -1.267 1.0000
## 0.0001765 0.00467545 Inf 0.038 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0002827 0.00431562 Inf 0.066 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0033142 0.00535377 Inf -0.619 1.0000
## -0.0182300 0.00968789 Inf -1.882 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0010776 0.00802745 Inf -0.134 1.0000
## -0.0876473 0.02179055 Inf -4.022 0.2962
## -0.0506849 0.01450836 Inf -3.494 0.7974
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0458915 0.01458583 Inf -3.146 0.9731
## -0.0125225 0.00817913 Inf -1.531 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## 0.0000355 0.00470119 Inf 0.008 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0297396 0.01122932 Inf -2.648 0.9999
## -0.0737226 0.02226212 Inf -3.312 0.9168
## -0.0029799 0.00499530 Inf -0.597 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0002909 0.00476139 Inf -0.061 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.1531294 0.02987331 Inf -5.126 0.0038
## -0.0802054 0.02345405 Inf -3.420 0.8533
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0004150 0.00478450 Inf -0.087 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0885935 0.02193191 Inf -4.039 0.2826
## -0.0056539 0.00638655 Inf -0.885 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0041698 0.00553058 Inf -0.754 1.0000
## 0.0001394 0.00453878 Inf 0.031 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0023901 0.00516684 Inf -0.463 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0001916 0.00447114 Inf 0.043 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0512734 0.03184460 Inf -1.610 1.0000
## -0.0016221 0.00501514 Inf -0.323 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0061901 0.00595967 Inf -1.039 1.0000
## -0.0936330 0.02576745 Inf -3.634 0.6693
## -0.8949971 0.01901980 Inf -47.056 <.0001
## -0.6963379 0.04259048 Inf -16.350 <.0001
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0017496 0.00504008 Inf -0.347 1.0000
## 0.0001394 0.00453878 Inf 0.031 1.0000
## -0.0002359 0.00438591 Inf -0.054 1.0000
## 0.0000427 0.00489104 Inf 0.009 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0648521 0.03708280 Inf -1.749 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0002748 0.00475840 Inf -0.058 1.0000
## -0.0003935 0.00510955 Inf -0.077 1.0000
## -0.0024444 0.00490250 Inf -0.499 1.0000
## -0.1645048 0.03365359 Inf -4.888 0.0118
## -0.0073884 0.01128650 Inf -0.655 1.0000
## -0.0042286 0.00554285 Inf -0.763 1.0000
## -0.0211368 0.00877260 Inf -2.409 1.0000
## -0.9672138 0.00605254 Inf -159.803 <.0001
## -0.9670369 0.00732558 Inf -132.008 <.0001
## -0.0292071 0.01111330 Inf -2.628 1.0000
## -0.0246885 0.01137017 Inf -2.171 1.0000
## -0.0021570 0.00485335 Inf -0.444 1.0000
## 0.0000427 0.00489104 Inf 0.009 1.0000
## -0.3109018 0.08420050 Inf -3.692 0.6105
## -0.0209833 0.00928629 Inf -2.260 1.0000
## -0.0052321 0.00550490 Inf -0.950 1.0000
## 0.0002425 0.00432100 Inf 0.056 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.1831464 0.03267696 Inf -5.605 0.0003
## -0.0251169 0.01148021 Inf -2.188 1.0000
## -0.0014031 0.00472668 Inf -0.297 1.0000
## 0.0001144 0.00487615 Inf 0.023 1.0000
## 0.0005063 0.00723264 Inf 0.070 1.0000
## -0.0550533 0.01634271 Inf -3.369 0.8860
## -0.5719582 0.04038993 Inf -14.161 <.0001
## 0.0002827 0.00431562 Inf 0.066 1.0000
## -0.0004614 0.00499690 Inf -0.092 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0401304 0.02715656 Inf -1.478 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## 0.0005063 0.00461589 Inf 0.110 1.0000
## 0.0005063 0.00490885 Inf 0.103 1.0000
## 0.0005063 0.00442294 Inf 0.114 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0608393 0.03558626 Inf -1.710 1.0000
## -0.0013877 0.00496957 Inf -0.279 1.0000
## 0.0005063 0.00447954 Inf 0.113 1.0000
## 0.0005063 0.00428593 Inf 0.118 1.0000
## 0.0005063 0.00479558 Inf 0.106 1.0000
## -0.0230569 0.01689945 Inf -1.364 1.0000
## 0.0160004 0.00855430 Inf 1.870 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0177918 0.00851403 Inf 2.090 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0181465 0.00847902 Inf 2.140 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.1016473 0.05441450 Inf -1.868 1.0000
## 0.0132171 0.00904184 Inf 1.462 1.0000
## 0.0161752 0.00858087 Inf 1.885 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0175414 0.00865467 Inf 2.027 1.0000
## -0.0451193 0.01911133 Inf -2.361 1.0000
## 0.0124919 0.00948616 Inf 1.317 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0182098 0.00836432 Inf 2.177 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## -0.0188656 0.01453371 Inf -1.298 1.0000
## -0.0375281 0.01685734 Inf -2.226 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0085180 0.02204745 Inf -0.386 1.0000
## 0.0181465 0.00847902 Inf 2.140 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0182528 0.00828636 Inf 2.203 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0146558 0.00886160 Inf 1.654 1.0000
## -0.0002599 0.01196417 Inf -0.022 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0168925 0.01069634 Inf 1.579 1.0000
## -0.0696772 0.02287338 Inf -3.046 0.9887
## -0.0327149 0.01609659 Inf -2.032 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0279215 0.01616842 Inf -1.727 1.0000
## 0.0054476 0.01078798 Inf 0.505 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0180056 0.00849282 Inf 2.120 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0117696 0.01323134 Inf -0.890 1.0000
## -0.0557525 0.02332415 Inf -2.390 1.0000
## 0.0149902 0.00865066 Inf 1.733 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0176792 0.00852534 Inf 2.074 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.1351593 0.03067369 Inf -4.406 0.0866
## -0.0622354 0.02446381 Inf -2.544 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0175551 0.00853791 Inf 2.056 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0706235 0.02300804 Inf -3.070 0.9860
## 0.0123162 0.00951566 Inf 1.294 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0138002 0.00896734 Inf 1.539 1.0000
## 0.0181095 0.00840432 Inf 2.155 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0155799 0.00875242 Inf 1.780 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0181617 0.00836814 Inf 2.170 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0333034 0.03259876 Inf -1.022 1.0000
## 0.0163480 0.00866585 Inf 1.886 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0117799 0.00923331 Inf 1.276 1.0000
## -0.0756629 0.02668921 Inf -2.835 0.9990
## -0.8770270 0.02036518 Inf -43.065 <.0001
## -0.6783679 0.04319867 Inf -15.703 <.0001
## 0.0184764 0.01011739 Inf 1.826 1.0000
## 0.0162205 0.00867995 Inf 1.869 1.0000
## 0.0181095 0.00840432 Inf 2.155 1.0000
## 0.0177341 0.00832163 Inf 2.131 1.0000
## 0.0180127 0.00859939 Inf 2.095 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0468820 0.03773068 Inf -1.243 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0176953 0.00852372 Inf 2.076 1.0000
## 0.0175766 0.00872427 Inf 2.015 1.0000
## 0.0155257 0.00859887 Inf 1.806 1.0000
## -0.1465347 0.03436674 Inf -4.264 0.1426
## 0.0105817 0.01330678 Inf 0.795 1.0000
## 0.0137414 0.00897477 Inf 1.531 1.0000
## -0.0031667 0.01123189 Inf -0.282 1.0000
## -0.9492437 0.00940250 Inf -100.957 <.0001
## -0.9490668 0.01026864 Inf -92.424 <.0001
## -0.0112371 0.01313350 Inf -0.856 1.0000
## -0.0067185 0.01335581 Inf -0.503 1.0000
## 0.0158131 0.00857174 Inf 1.845 1.0000
## 0.0180127 0.00859939 Inf 2.095 1.0000
## -0.2929318 0.08449333 Inf -3.467 0.8186
## -0.0030132 0.01163773 Inf -0.259 1.0000
## 0.0127380 0.00894886 Inf 1.423 1.0000
## 0.0182125 0.00828905 Inf 2.197 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.1651763 0.03341230 Inf -4.944 0.0091
## -0.0071469 0.01344919 Inf -0.531 1.0000
## 0.0165670 0.00850279 Inf 1.948 1.0000
## 0.0180845 0.00859114 Inf 2.105 1.0000
## 0.0184764 0.01011739 Inf 1.826 1.0000
## -0.0370832 0.01776630 Inf -2.087 1.0000
## -0.5539881 0.04102003 Inf -13.505 <.0001
## 0.0182528 0.00828636 Inf 2.203 1.0000
## 0.0175086 0.00865859 Inf 2.022 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0221603 0.02803999 Inf -0.790 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0184764 0.00844731 Inf 2.187 1.0000
## 0.0184764 0.00861089 Inf 2.146 1.0000
## 0.0184764 0.00834344 Inf 2.214 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## -0.0428692 0.03626132 Inf -1.182 1.0000
## 0.0165824 0.00864021 Inf 1.919 1.0000
## 0.0184764 0.00837358 Inf 2.207 1.0000
## 0.0184764 0.00827162 Inf 2.234 1.0000
## 0.0184764 0.00854682 Inf 2.162 1.0000
## 0.0390574 0.01535949 Inf 2.543 1.0000
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0408487 0.01533924 Inf 2.663 0.9999
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0412035 0.01532027 Inf 2.689 0.9999
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.0785903 0.05587934 Inf -1.406 1.0000
## 0.0362740 0.01563318 Inf 2.320 1.0000
## 0.0392321 0.01537451 Inf 2.552 1.0000
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0405984 0.01541744 Inf 2.633 1.0000
## -0.0220624 0.02295425 Inf -0.961 1.0000
## 0.0355488 0.01589354 Inf 2.237 1.0000
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0412668 0.01525717 Inf 2.705 0.9999
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0041914 0.01931676 Inf 0.217 1.0000
## -0.0144711 0.02111580 Inf -0.685 1.0000
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0145390 0.02545917 Inf 0.571 1.0000
## 0.0412035 0.01532027 Inf 2.689 0.9999
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0413097 0.01521462 Inf 2.715 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0377128 0.01553121 Inf 2.428 1.0000
## 0.0227970 0.01747563 Inf 1.304 1.0000
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0399494 0.01664879 Inf 2.400 1.0000
## -0.0466203 0.02616785 Inf -1.782 1.0000
## -0.0096579 0.02051458 Inf -0.471 1.0000
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.0048645 0.02057216 Inf -0.236 1.0000
## 0.0285045 0.01669683 Inf 1.707 1.0000
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0410625 0.01532774 Inf 2.679 0.9999
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0112874 0.01835997 Inf 0.615 1.0000
## -0.0326956 0.02656349 Inf -1.231 1.0000
## 0.0380471 0.01541220 Inf 2.469 1.0000
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0407361 0.01534538 Inf 2.655 0.9999
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.1121024 0.03320411 Inf -3.376 0.8815
## -0.0391784 0.02756918 Inf -1.421 1.0000
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0406120 0.01535222 Inf 2.645 0.9999
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.0475665 0.02628561 Inf -1.810 1.0000
## 0.0353731 0.01591098 Inf 2.223 1.0000
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0368572 0.01559084 Inf 2.364 1.0000
## 0.0411664 0.01527901 Inf 2.694 0.9999
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0386369 0.01547022 Inf 2.498 1.0000
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0412186 0.01525920 Inf 2.701 0.9999
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.0102464 0.03499174 Inf -0.293 1.0000
## 0.0394049 0.01542230 Inf 2.555 1.0000
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0348369 0.01574319 Inf 2.213 1.0000
## -0.0526060 0.02956131 Inf -1.780 1.0000
## -0.8539701 0.02407844 Inf -35.466 <.0001
## -0.6553109 0.04506160 Inf -14.543 <.0001
## 0.0415333 0.01628469 Inf 2.550 1.0000
## 0.0392774 0.01543008 Inf 2.546 1.0000
## 0.0411664 0.01527901 Inf 2.694 0.9999
## 0.0407911 0.01523322 Inf 2.678 0.9999
## 0.0410697 0.01538705 Inf 2.669 0.9999
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.0238251 0.03981518 Inf -0.598 1.0000
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0407522 0.01534450 Inf 2.656 0.9999
## 0.0406335 0.01545667 Inf 2.629 1.0000
## 0.0385826 0.01538381 Inf 2.508 1.0000
## -0.1234778 0.03664350 Inf -3.370 0.8854
## 0.0336386 0.01842894 Inf 1.825 1.0000
## 0.0367984 0.01559505 Inf 2.360 1.0000
## 0.0198902 0.01698073 Inf 1.171 1.0000
## -0.9261868 0.01589112 Inf -58.283 <.0001
## -0.9260099 0.01641861 Inf -56.400 <.0001
## 0.0118199 0.01828984 Inf 0.646 1.0000
## 0.0163385 0.01845244 Inf 0.885 1.0000
## 0.0388700 0.01536899 Inf 2.529 1.0000
## 0.0410697 0.01538705 Inf 2.669 0.9999
## -0.2698748 0.08544861 Inf -3.158 0.9704
## 0.0200437 0.01725195 Inf 1.162 1.0000
## 0.0357949 0.01557907 Inf 2.298 1.0000
## 0.0412695 0.01521603 Inf 2.712 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.1421194 0.03575084 Inf -3.975 0.3351
## 0.0159101 0.01851991 Inf 0.859 1.0000
## 0.0396239 0.01533153 Inf 2.584 1.0000
## 0.0411414 0.01538253 Inf 2.675 0.9999
## 0.0415333 0.01628469 Inf 2.550 1.0000
## -0.0140263 0.02184839 Inf -0.642 1.0000
## -0.5309312 0.04296983 Inf -12.356 <.0001
## 0.0413097 0.01521462 Inf 2.715 0.9998
## 0.0405656 0.01541960 Inf 2.631 1.0000
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0008966 0.03079131 Inf 0.029 1.0000
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0415333 0.01530315 Inf 2.714 0.9998
## 0.0415333 0.01539405 Inf 2.698 0.9999
## 0.0415333 0.01524606 Inf 2.724 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## -0.0198123 0.03842593 Inf -0.516 1.0000
## 0.0396393 0.01540819 Inf 2.573 1.0000
## 0.0415333 0.01526258 Inf 2.721 0.9998
## 0.0415333 0.01520688 Inf 2.731 0.9998
## 0.0415333 0.01535831 Inf 2.704 0.9999
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## 0.0017913 0.00465936 Inf 0.384 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0021461 0.00459338 Inf 0.467 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.1176477 0.05395920 Inf -2.180 1.0000
## -0.0027834 0.00558244 Inf -0.499 1.0000
## 0.0001748 0.00478758 Inf 0.036 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0015410 0.00491273 Inf 0.314 1.0000
## -0.0611197 0.01777061 Inf -3.439 0.8393
## -0.0035086 0.00627886 Inf -0.559 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0022094 0.00437772 Inf 0.505 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## -0.0348660 0.01270773 Inf -2.744 0.9997
## -0.0535285 0.01531865 Inf -3.494 0.7968
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0245184 0.02088419 Inf -1.174 1.0000
## 0.0021461 0.00459338 Inf 0.467 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0022523 0.00422666 Inf 0.533 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0013446 0.00528014 Inf -0.255 1.0000
## -0.0162604 0.00964343 Inf -1.686 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0008920 0.00797942 Inf 0.112 1.0000
## -0.0856777 0.02176803 Inf -3.936 0.3697
## -0.0487153 0.01447562 Inf -3.365 0.8880
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0439219 0.01455356 Inf -3.018 0.9914
## -0.0105529 0.00812802 Inf -1.298 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## 0.0020051 0.00461948 Inf 0.434 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0277700 0.01118913 Inf -2.482 1.0000
## -0.0717529 0.02224022 Inf -3.226 0.9515
## -0.0010103 0.00491652 Inf -0.205 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## 0.0016787 0.00468050 Inf 0.359 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.1511598 0.02985710 Inf -5.063 0.0052
## -0.0782358 0.02343319 Inf -3.339 0.9030
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## 0.0015547 0.00470392 Inf 0.330 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0866239 0.02190953 Inf -3.954 0.3539
## -0.0036842 0.00632386 Inf -0.583 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## -0.0022002 0.00545886 Inf -0.403 1.0000
## 0.0021091 0.00445417 Inf 0.474 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0004205 0.00509107 Inf -0.083 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0021612 0.00438526 Inf 0.493 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0493038 0.03182969 Inf -1.549 1.0000
## 0.0003475 0.00493754 Inf 0.070 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0042205 0.00589218 Inf -0.716 1.0000
## -0.0916634 0.02574838 Inf -3.560 0.7397
## -0.8930275 0.01901005 Inf -46.977 <.0001
## -0.6943683 0.04258487 Inf -16.306 <.0001
## 0.0024759 0.00718001 Inf 0.345 1.0000
## 0.0002200 0.00496278 Inf 0.044 1.0000
## 0.0021091 0.00445417 Inf 0.474 1.0000
## 0.0017337 0.00429800 Inf 0.403 1.0000
## 0.0020123 0.00481256 Inf 0.418 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0628824 0.03706976 Inf -1.696 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0016948 0.00467747 Inf 0.362 1.0000
## 0.0015762 0.00503419 Inf 0.313 1.0000
## -0.0004747 0.00482255 Inf -0.098 1.0000
## -0.1625351 0.03363929 Inf -4.832 0.0152
## -0.0054188 0.01125071 Inf -0.482 1.0000
## -0.0022590 0.00547126 Inf -0.413 1.0000
## -0.0191671 0.00872281 Inf -2.197 1.0000
## -0.9652442 0.00600852 Inf -160.646 <.0001
## -0.9650673 0.00728931 Inf -132.395 <.0001
## -0.0272375 0.01107277 Inf -2.460 1.0000
## -0.0227189 0.01133121 Inf -2.005 1.0000
## -0.0001874 0.00477276 Inf -0.039 1.0000
## 0.0020123 0.00481256 Inf 0.418 1.0000
## -0.3089322 0.08419548 Inf -3.669 0.6339
## -0.0190136 0.00923930 Inf -2.058 1.0000
## -0.0032624 0.00543226 Inf -0.601 1.0000
## 0.0022121 0.00423212 Inf 0.523 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.1811768 0.03266241 Inf -5.547 0.0004
## -0.0231473 0.01144156 Inf -2.023 1.0000
## 0.0005666 0.00464441 Inf 0.122 1.0000
## 0.0020840 0.00479747 Inf 0.434 1.0000
## 0.0024759 0.00718001 Inf 0.345 1.0000
## -0.0530837 0.01631345 Inf -3.254 0.9417
## -0.5699885 0.04038258 Inf -14.115 <.0001
## 0.0022523 0.00422666 Inf 0.533 1.0000
## 0.0015082 0.00491977 Inf 0.307 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0381608 0.02713946 Inf -1.406 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0024759 0.00453299 Inf 0.546 1.0000
## 0.0024759 0.00483098 Inf 0.513 1.0000
## 0.0024759 0.00433635 Inf 0.571 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## -0.0588696 0.03557273 Inf -1.655 1.0000
## 0.0005819 0.00489140 Inf 0.119 1.0000
## 0.0024759 0.00439406 Inf 0.563 1.0000
## 0.0024759 0.00419651 Inf 0.590 1.0000
## 0.0024759 0.00471584 Inf 0.525 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0006846 0.00463263 Inf -0.148 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1201236 0.05395945 Inf -2.226 1.0000
## -0.0052593 0.00556341 Inf -0.945 1.0000
## -0.0023012 0.00476296 Inf -0.483 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0009349 0.00488761 Inf -0.191 1.0000
## -0.0635957 0.01777082 Inf -3.579 0.7224
## -0.0059845 0.00626237 Inf -0.956 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0006846 0.00712564 Inf -0.096 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0003298 0.00708247 Inf -0.047 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1201236 0.05423040 Inf -2.215 1.0000
## -0.0052593 0.00776305 Inf -0.677 1.0000
## -0.0023012 0.00721105 Inf -0.319 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009349 0.00729398 Inf -0.128 1.0000
## -0.0635957 0.01857728 Inf -3.423 0.8508
## -0.0059845 0.00827833 Inf -0.723 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0002665 0.00694450 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0373419 0.01381126 Inf -2.704 0.9999
## -0.0560044 0.01624717 Inf -3.447 0.8337
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0269943 0.02157257 Inf -1.251 1.0000
## -0.0003298 0.00708247 Inf -0.047 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0002236 0.00685025 Inf -0.033 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0038205 0.00754786 Inf -0.506 1.0000
## -0.0187363 0.01105363 Inf -1.695 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0015839 0.00963035 Inf -0.164 1.0000
## -0.0881536 0.02243185 Inf -3.930 0.3752
## -0.0511912 0.01545457 Inf -3.312 0.9164
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0463978 0.01552725 Inf -2.988 0.9936
## -0.0130288 0.00975802 Inf -1.335 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0004708 0.00709950 Inf -0.066 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0302459 0.01242724 Inf -2.434 1.0000
## -0.0742288 0.02289017 Inf -3.243 0.9458
## -0.0034862 0.00729794 Inf -0.478 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0007972 0.00713955 Inf -0.112 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1536357 0.03034421 Inf -5.063 0.0052
## -0.0807117 0.02405102 Inf -3.356 0.8935
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0009213 0.00715500 Inf -0.129 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0890998 0.02256920 Inf -3.948 0.3591
## -0.0061602 0.00831259 Inf -0.741 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0003548 0.00450814 Inf 0.079 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.1194390 0.05395386 Inf -2.214 1.0000
## -0.0045747 0.00551506 Inf -0.829 1.0000
## -0.0016166 0.00470708 Inf -0.343 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## -0.0002503 0.00483350 Inf -0.052 1.0000
## -0.0629111 0.01775400 Inf -3.543 0.7546
## -0.0052999 0.00621934 Inf -0.852 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0004181 0.00428815 Inf 0.098 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## -0.0366573 0.01268290 Inf -2.890 0.9979
## -0.0553198 0.01529911 Inf -3.616 0.6869
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0263097 0.02086843 Inf -1.261 1.0000
## 0.0003548 0.00450814 Inf 0.079 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0004610 0.00413378 Inf 0.112 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0031359 0.00520809 Inf -0.602 1.0000
## -0.0180517 0.00960779 Inf -1.879 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0008993 0.00793112 Inf -0.113 1.0000
## -0.0874690 0.02175480 Inf -4.021 0.2975
## -0.0505066 0.01445471 Inf -3.494 0.7969
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0457132 0.01453249 Inf -3.146 0.9732
## -0.0123442 0.00808424 Inf -1.527 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## 0.0002138 0.00453482 Inf 0.047 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0295613 0.01116012 Inf -2.649 0.9999
## -0.0735442 0.02222713 Inf -3.309 0.9182
## -0.0028016 0.00483887 Inf -0.579 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## -0.0001126 0.00459718 Inf -0.024 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.1529511 0.02984726 Inf -5.124 0.0038
## -0.0800271 0.02342084 Inf -3.417 0.8552
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## -0.0002367 0.00462110 Inf -0.051 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0884152 0.02189639 Inf -4.038 0.2839
## -0.0054756 0.00626484 Inf -0.874 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## -0.0039915 0.00538964 Inf -0.741 1.0000
## 0.0003177 0.00436623 Inf 0.073 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0022118 0.00501580 Inf -0.441 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0003699 0.00429588 Inf 0.086 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0510951 0.03182019 Inf -1.606 1.0000
## -0.0014438 0.00485943 Inf -0.297 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0060118 0.00582903 Inf -1.031 1.0000
## -0.0934547 0.02573722 Inf -3.631 0.6720
## -0.8948188 0.01898032 Inf -47.145 <.0001
## -0.6961596 0.04257275 Inf -16.352 <.0001
## 0.0006846 0.00712564 Inf 0.096 1.0000
## -0.0015713 0.00488515 Inf -0.322 1.0000
## 0.0003177 0.00436623 Inf 0.073 1.0000
## -0.0000576 0.00420707 Inf -0.014 1.0000
## 0.0002210 0.00473135 Inf 0.047 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0646738 0.03706182 Inf -1.745 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0000965 0.00459408 Inf -0.021 1.0000
## -0.0002152 0.00495688 Inf -0.043 1.0000
## -0.0022661 0.00474304 Inf -0.478 1.0000
## -0.1643265 0.03363048 Inf -4.886 0.0119
## -0.0072101 0.01121804 Inf -0.643 1.0000
## -0.0040503 0.00540223 Inf -0.750 1.0000
## -0.0209585 0.00868399 Inf -2.413 1.0000
## -0.9670355 0.00592604 Inf -163.184 <.0001
## -0.9668586 0.00722142 Inf -133.888 <.0001
## -0.0290288 0.01104338 Inf -2.629 1.0000
## -0.0245102 0.01130189 Inf -2.169 1.0000
## -0.0019787 0.00469224 Inf -0.422 1.0000
## 0.0002210 0.00473135 Inf 0.047 1.0000
## -0.3107235 0.08419133 Inf -3.691 0.6122
## -0.0208050 0.00920264 Inf -2.261 1.0000
## -0.0050538 0.00536323 Inf -0.942 1.0000
## 0.0004208 0.00413940 Inf 0.102 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.1829681 0.03265317 Inf -5.603 0.0003
## -0.0249386 0.01141259 Inf -2.185 1.0000
## -0.0012248 0.00456115 Inf -0.269 1.0000
## 0.0002927 0.00471596 Inf 0.062 1.0000
## 0.0006846 0.00712564 Inf 0.096 1.0000
## -0.0548750 0.01629508 Inf -3.368 0.8867
## -0.5717798 0.04037110 Inf -14.163 <.0001
## 0.0004610 0.00413378 Inf 0.112 1.0000
## -0.0002831 0.00484068 Inf -0.058 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0399521 0.02712797 Inf -1.473 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0006846 0.00444636 Inf 0.154 1.0000
## 0.0006846 0.00474979 Inf 0.144 1.0000
## 0.0006846 0.00424572 Inf 0.161 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## -0.0606610 0.03556440 Inf -1.706 1.0000
## -0.0012094 0.00481240 Inf -0.251 1.0000
## 0.0006846 0.00430464 Inf 0.159 1.0000
## 0.0006846 0.00410278 Inf 0.167 1.0000
## 0.0006846 0.00463263 Inf 0.148 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0003298 0.00423279 Inf -0.078 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1201236 0.05393229 Inf -2.227 1.0000
## -0.0052593 0.00529341 Inf -0.994 1.0000
## -0.0023012 0.00444460 Inf -0.518 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## -0.0009349 0.00457792 Inf -0.204 1.0000
## -0.0635957 0.01768815 Inf -3.595 0.7066
## -0.0059845 0.00602378 Inf -0.993 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0002665 0.00399766 Inf -0.067 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0373419 0.01258993 Inf -2.966 0.9950
## -0.0560044 0.01522254 Inf -3.679 0.6240
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0269943 0.02081180 Inf -1.297 1.0000
## -0.0003298 0.00423279 Inf -0.078 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## -0.0002236 0.00383159 Inf -0.058 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0038205 0.00497246 Inf -0.768 1.0000
## -0.0187363 0.00948356 Inf -1.976 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0015839 0.00777810 Inf -0.204 1.0000
## -0.0881536 0.02170123 Inf -4.062 0.2654
## -0.0511912 0.01437355 Inf -3.561 0.7383
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0463978 0.01445167 Inf -3.211 0.9565
## -0.0130288 0.00793562 Inf -1.642 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0004708 0.00426123 Inf -0.110 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0302459 0.01105403 Inf -2.736 0.9998
## -0.0742288 0.02217465 Inf -3.347 0.8982
## -0.0034862 0.00458422 Inf -0.760 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0007972 0.00432763 Inf -0.184 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1536357 0.02980816 Inf -5.154 0.0033
## -0.0807117 0.02337107 Inf -3.453 0.8289
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0009213 0.00435307 Inf -0.212 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0890998 0.02184317 Inf -4.079 0.2530
## -0.0061602 0.00607078 Inf -1.015 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0046761 0.00516248 Inf -0.906 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0028964 0.00477047 Inf -0.607 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0003147 0.00400597 Inf -0.079 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0517797 0.03178342 Inf -1.629 1.0000
## -0.0021284 0.00460559 Inf -0.462 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1201236 0.05391655 Inf -2.228 1.0000
## -0.0052593 0.00513060 Inf -1.025 1.0000
## -0.0023012 0.00424939 Inf -0.542 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## -0.0009349 0.00438865 Inf -0.213 1.0000
## -0.0635957 0.01764011 Inf -3.605 0.6972
## -0.0059845 0.00588123 Inf -1.018 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0002665 0.00377945 Inf -0.071 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0373419 0.01252235 Inf -2.982 0.9940
## -0.0560044 0.01516669 Inf -3.693 0.6103
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0269943 0.02077099 Inf -1.300 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## -0.0002236 0.00360333 Inf -0.062 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0038205 0.00479878 Inf -0.796 1.0000
## -0.0187363 0.00939366 Inf -1.995 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0015839 0.00766823 Inf -0.207 1.0000
## -0.0881536 0.02166209 Inf -4.069 0.2600
## -0.0511912 0.01431440 Inf -3.576 0.7247
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01439284 Inf -3.224 0.9524
## -0.0130288 0.00782796 Inf -1.664 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0004708 0.00405722 Inf -0.116 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1201236 0.05395945 Inf -2.226 1.0000
## -0.0052593 0.00556341 Inf -0.945 1.0000
## -0.0023012 0.00476296 Inf -0.483 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0009349 0.00488761 Inf -0.191 1.0000
## -0.0635957 0.01777082 Inf -3.579 0.7224
## -0.0059845 0.00626237 Inf -0.956 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.1197938 0.05394856 Inf -2.221 1.0000
## -0.0049295 0.00545973 Inf -0.903 1.0000
## -0.0019713 0.00464177 Inf -0.425 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## -0.0006051 0.00476975 Inf -0.127 1.0000
## -0.0632658 0.01773779 Inf -3.567 0.7335
## -0.0056547 0.00617038 Inf -0.916 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0000633 0.00421606 Inf 0.015 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0370121 0.01265987 Inf -2.924 0.9969
## -0.0556746 0.01528024 Inf -3.644 0.6596
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0266645 0.02085432 Inf -1.279 1.0000
## 0.0000000 0.00443963 Inf 0.000 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0001062 0.00405894 Inf 0.026 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0034907 0.00514931 Inf -0.678 1.0000
## -0.0184065 0.00957678 Inf -1.922 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0012541 0.00789248 Inf -0.159 1.0000
## -0.0878238 0.02174164 Inf -4.039 0.2827
## -0.0508614 0.01443469 Inf -3.524 0.7721
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0460680 0.01451253 Inf -3.174 0.9666
## -0.0126990 0.00804707 Inf -1.578 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0001410 0.00446674 Inf -0.032 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0299161 0.01113378 Inf -2.687 0.9999
## -0.0738990 0.02221423 Inf -3.327 0.9093
## -0.0031564 0.00477550 Inf -0.661 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0004674 0.00453008 Inf -0.103 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.1533059 0.02983763 Inf -5.138 0.0036
## -0.0803819 0.02340861 Inf -3.434 0.8433
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0005914 0.00455437 Inf -0.130 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0887700 0.02188332 Inf -4.057 0.2696
## -0.0058303 0.00621626 Inf -0.938 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0043463 0.00533294 Inf -0.815 1.0000
## -0.0000370 0.00429547 Inf -0.009 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0025666 0.00495462 Inf -0.518 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0000151 0.00422393 Inf 0.004 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0514499 0.03181111 Inf -1.617 1.0000
## -0.0017986 0.00479617 Inf -0.375 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0063666 0.00577683 Inf -1.102 1.0000
## -0.0938095 0.02572611 Inf -3.646 0.6568
## -0.8951736 0.01896227 Inf -47.208 <.0001
## -0.6965144 0.04256494 Inf -16.364 <.0001
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0019261 0.00482224 Inf -0.399 1.0000
## -0.0000370 0.00429547 Inf -0.009 1.0000
## -0.0004124 0.00413364 Inf -0.100 1.0000
## -0.0001338 0.00466614 Inf -0.029 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0650285 0.03705407 Inf -1.755 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0004513 0.00452694 Inf -0.100 1.0000
## -0.0005699 0.00489472 Inf -0.116 1.0000
## -0.0026208 0.00467831 Inf -0.560 1.0000
## -0.1646812 0.03362191 Inf -4.898 0.0112
## -0.0075649 0.01119106 Inf -0.676 1.0000
## -0.0044051 0.00534567 Inf -0.824 1.0000
## -0.0213132 0.00864981 Inf -2.464 1.0000
## -0.9673903 0.00587049 Inf -164.789 <.0001
## -0.9672134 0.00717590 Inf -134.786 <.0001
## -0.0293836 0.01101675 Inf -2.667 0.9999
## -0.0248650 0.01127575 Inf -2.205 1.0000
## -0.0023335 0.00462676 Inf -0.504 1.0000
## -0.0001338 0.00466614 Inf -0.029 1.0000
## -0.3110783 0.08418778 Inf -3.695 0.6078
## -0.0211597 0.00917038 Inf -2.307 1.0000
## -0.0054085 0.00530636 Inf -1.019 1.0000
## 0.0000660 0.00406467 Inf 0.016 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.1833229 0.03264432 Inf -5.616 0.0003
## -0.0252934 0.01138671 Inf -2.221 1.0000
## -0.0015795 0.00449366 Inf -0.352 1.0000
## -0.0000621 0.00465052 Inf -0.013 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0552298 0.01627736 Inf -3.393 0.8710
## -0.5721346 0.04036312 Inf -14.175 <.0001
## 0.0001062 0.00405894 Inf 0.026 1.0000
## -0.0006379 0.00477702 Inf -0.134 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0403069 0.02711724 Inf -1.486 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0610157 0.03555631 Inf -1.716 1.0000
## -0.0015642 0.00474848 Inf -0.329 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1201236 0.05396964 Inf -2.226 1.0000
## -0.0052593 0.00566134 Inf -0.929 1.0000
## -0.0023012 0.00487699 Inf -0.472 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0009349 0.00499880 Inf -0.187 1.0000
## -0.0635957 0.01780172 Inf -3.572 0.7282
## -0.0059845 0.00634953 Inf -0.943 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## -0.0002665 0.00447347 Inf -0.060 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0373419 0.01274899 Inf -2.929 0.9967
## -0.0560044 0.01535436 Inf -3.647 0.6558
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0269943 0.02090841 Inf -1.291 1.0000
## -0.0003298 0.00468478 Inf -0.070 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0002236 0.00432570 Inf -0.052 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0038205 0.00536246 Inf -0.712 1.0000
## -0.0187363 0.00969374 Inf -1.933 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0015839 0.00803302 Inf -0.197 1.0000
## -0.0881536 0.02179389 Inf -4.045 0.2785
## -0.0511912 0.01451309 Inf -3.527 0.7689
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0463978 0.01459046 Inf -3.180 0.9651
## -0.0130288 0.00818564 Inf -1.592 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0004708 0.00471049 Inf -0.100 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0302459 0.01123486 Inf -2.692 0.9999
## -0.0742288 0.02226535 Inf -3.334 0.9056
## -0.0034862 0.00500457 Inf -0.697 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0007972 0.00477064 Inf -0.167 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1536357 0.02987569 Inf -5.143 0.0035
## -0.0807117 0.02345714 Inf -3.441 0.8383
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0009213 0.00479373 Inf -0.192 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0890998 0.02193524 Inf -4.062 0.2655
## -0.0061602 0.00639413 Inf -0.963 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0046761 0.00553912 Inf -0.844 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0028964 0.00517571 Inf -0.560 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## -0.0003147 0.00448089 Inf -0.070 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0517797 0.03184676 Inf -1.626 1.0000
## -0.0021284 0.00502415 Inf -0.424 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0066964 0.00596786 Inf -1.122 1.0000
## -0.0941393 0.02577029 Inf -3.653 0.6502
## -0.8955034 0.01901939 Inf -47.084 <.0001
## -0.6968442 0.04259063 Inf -16.361 <.0001
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0022559 0.00504906 Inf -0.447 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## -0.0007422 0.00439594 Inf -0.169 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0653583 0.03708472 Inf -1.762 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0007811 0.00476765 Inf -0.164 1.0000
## -0.0008997 0.00511818 Inf -0.176 1.0000
## -0.0029507 0.00491185 Inf -0.601 1.0000
## -0.1650110 0.03365568 Inf -4.903 0.0110
## -0.0078947 0.01129091 Inf -0.699 1.0000
## -0.0047349 0.00555138 Inf -0.853 1.0000
## -0.0216431 0.00877924 Inf -2.465 1.0000
## -0.9677201 0.00605474 Inf -159.829 <.0001
## -0.9675432 0.00732738 Inf -132.045 <.0001
## -0.0297134 0.01111888 Inf -2.672 0.9999
## -0.0251948 0.01137544 Inf -2.215 1.0000
## -0.0026633 0.00486274 Inf -0.548 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## -0.3114081 0.08420115 Inf -3.698 0.6044
## -0.0214896 0.00929256 Inf -2.313 1.0000
## -0.0057384 0.00551363 Inf -1.041 1.0000
## -0.0002638 0.00433108 Inf -0.061 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1836527 0.03267906 Inf -5.620 0.0003
## -0.0256232 0.01148545 Inf -2.231 1.0000
## -0.0019093 0.00473620 Inf -0.403 1.0000
## -0.0003919 0.00488510 Inf -0.080 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0555596 0.01634696 Inf -3.399 0.8673
## -0.5724644 0.04039047 Inf -14.173 <.0001
## -0.0002236 0.00432570 Inf -0.052 1.0000
## -0.0009677 0.00500574 Inf -0.193 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1201236 0.05392761 Inf -2.228 1.0000
## -0.0052593 0.00524560 Inf -1.003 1.0000
## -0.0023012 0.00438755 Inf -0.524 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## -0.0009349 0.00452256 Inf -0.207 1.0000
## -0.0635957 0.01767390 Inf -3.598 0.7039
## -0.0059845 0.00598182 Inf -1.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0002665 0.00393414 Inf -0.068 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0373419 0.01256990 Inf -2.971 0.9947
## -0.0560044 0.01520598 Inf -3.683 0.6200
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0269943 0.02079969 Inf -1.298 1.0000
## -0.0003298 0.00417286 Inf -0.079 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## -0.0002236 0.00376527 Inf -0.059 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0038205 0.00492154 Inf -0.776 1.0000
## -0.0187363 0.00945696 Inf -1.981 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0015839 0.00774565 Inf -0.204 1.0000
## -0.0881536 0.02168962 Inf -4.064 0.2638
## -0.0511912 0.01435602 Inf -3.566 0.7343
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0463978 0.01443423 Inf -3.214 0.9553
## -0.0130288 0.00790382 Inf -1.648 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0004708 0.00420170 Inf -0.112 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0302459 0.01103121 Inf -2.742 0.9997
## -0.0742288 0.02216329 Inf -3.349 0.8973
## -0.0034862 0.00452894 Inf -0.770 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0007972 0.00426902 Inf -0.187 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1536357 0.02979971 Inf -5.156 0.0033
## -0.0807117 0.02336029 Inf -3.455 0.8277
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0009213 0.00429481 Inf -0.215 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0890998 0.02183163 Inf -4.081 0.2514
## -0.0061602 0.00602914 Inf -1.022 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1201236 0.05395945 Inf -2.226 1.0000
## -0.0052593 0.00556341 Inf -0.945 1.0000
## -0.0023012 0.00476296 Inf -0.483 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0009349 0.00488761 Inf -0.191 1.0000
## -0.0635957 0.01777082 Inf -3.579 0.7224
## -0.0059845 0.00626237 Inf -0.956 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.1148643 0.05403711 Inf 2.126 1.0000
## 0.1178225 0.05396351 Inf 2.183 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1191887 0.05397609 Inf 2.208 1.0000
## 0.0565279 0.05658459 Inf 0.999 1.0000
## 0.1141391 0.05411285 Inf 2.109 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05396964 Inf 2.226 1.0000
## 0.1198571 0.05393069 Inf 2.222 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.0827817 0.05521081 Inf 1.499 1.0000
## 0.0641192 0.05586440 Inf 1.148 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05396964 Inf 2.226 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0931293 0.05764882 Inf 1.615 1.0000
## 0.1197938 0.05394856 Inf 2.221 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1199000 0.05391868 Inf 2.224 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1163031 0.05400802 Inf 2.153 1.0000
## 0.1013873 0.05459615 Inf 1.857 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1185397 0.05434046 Inf 2.181 1.0000
## 0.0319700 0.05796215 Inf 0.552 1.0000
## 0.0689324 0.05564020 Inf 1.239 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0737258 0.05566176 Inf 1.325 1.0000
## 0.1070948 0.05435282 Inf 1.970 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.1196528 0.05395065 Inf 2.218 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0898777 0.05488410 Inf 1.638 1.0000
## 0.0458948 0.05814207 Inf 0.789 1.0000
## 0.1166374 0.05397399 Inf 2.161 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.1193264 0.05395558 Inf 2.212 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## -0.0335121 0.06146071 Inf -0.545 1.0000
## 0.0394119 0.05860824 Inf 0.672 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.1192023 0.05395750 Inf 2.209 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0310238 0.05801540 Inf 0.535 1.0000
## 0.1139635 0.05411793 Inf 2.106 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.1154475 0.05402500 Inf 2.137 1.0000
## 0.1197567 0.05393685 Inf 2.220 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1172272 0.05399072 Inf 2.171 1.0000
## 0.1201236 0.05396964 Inf 2.226 1.0000
## 0.1198089 0.05393125 Inf 2.222 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0683439 0.06244519 Inf 1.094 1.0000
## 0.1179952 0.05397719 Inf 2.186 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1134272 0.05406873 Inf 2.098 1.0000
## 0.0259843 0.05957113 Inf 0.436 1.0000
## -0.7753798 0.05707072 Inf -13.586 <.0001
## -0.5767206 0.06861060 Inf -8.406 <.0001
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.1178677 0.05397938 Inf 2.184 1.0000
## 0.1197567 0.05393685 Inf 2.220 1.0000
## 0.1193814 0.05392380 Inf 2.214 1.0000
## 0.1196600 0.05396753 Inf 2.217 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05396964 Inf 2.226 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0547653 0.06526989 Inf 0.839 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1193425 0.05395534 Inf 2.212 1.0000
## 0.1192239 0.05398731 Inf 2.208 1.0000
## 0.1171730 0.05396601 Inf 2.171 1.0000
## -0.0448874 0.06338515 Inf -0.708 1.0000
## 0.1122289 0.05491064 Inf 2.044 1.0000
## 0.1153887 0.05402620 Inf 2.136 1.0000
## 0.0984806 0.05443932 Inf 1.809 1.0000
## -0.8475965 0.05412192 Inf -15.661 <.0001
## -0.8474196 0.05427918 Inf -15.612 <.0001
## 0.0904102 0.05486073 Inf 1.648 1.0000
## 0.0949288 0.05491570 Inf 1.729 1.0000
## 0.1174603 0.05396186 Inf 2.177 1.0000
## 0.1196600 0.05396753 Inf 2.217 1.0000
## -0.1912845 0.09988427 Inf -1.915 1.0000
## 0.0986341 0.05452455 Inf 1.809 1.0000
## 0.1143853 0.05402138 Inf 2.117 1.0000
## 0.1198598 0.05391907 Inf 2.223 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## -0.0635291 0.06287369 Inf -1.010 1.0000
## 0.0945004 0.05493836 Inf 1.720 1.0000
## 0.1182143 0.05395138 Inf 2.191 1.0000
## 0.1197317 0.05396626 Inf 2.219 1.0000
## 0.1201236 0.05423040 Inf 2.215 1.0000
## 0.0645640 0.05614543 Inf 1.150 1.0000
## -0.4523408 0.06725183 Inf -6.726 <.0001
## 0.1199000 0.05391868 Inf 2.224 1.0000
## 0.1191559 0.05397670 Inf 2.208 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05396964 Inf 2.226 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0794869 0.06019277 Inf 1.321 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.1201236 0.05394378 Inf 2.227 1.0000
## 0.1201236 0.05396964 Inf 2.226 1.0000
## 0.1201236 0.05392761 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0587781 0.06443198 Inf 0.912 1.0000
## 0.1182296 0.05397321 Inf 2.191 1.0000
## 0.1201236 0.05393229 Inf 2.227 1.0000
## 0.1201236 0.05391655 Inf 2.228 1.0000
## 0.1201236 0.05395945 Inf 2.226 1.0000
## 0.0029581 0.00562256 Inf 0.526 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0043244 0.00573054 Inf 0.755 1.0000
## -0.0583364 0.01800639 Inf -3.240 0.9469
## -0.0007252 0.00693444 Inf -0.105 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00566134 Inf 0.929 1.0000
## 0.0049928 0.00527963 Inf 0.946 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## -0.0320826 0.01303771 Inf -2.461 1.0000
## -0.0507451 0.01559195 Inf -3.255 0.9414
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00566134 Inf 0.929 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0217350 0.02108756 Inf -1.031 1.0000
## 0.0049295 0.00545973 Inf 0.903 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0050357 0.00515510 Inf 0.977 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0014388 0.00604645 Inf 0.238 1.0000
## -0.0134770 0.01007836 Inf -1.337 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0036754 0.00850703 Inf 0.432 1.0000
## -0.0828943 0.02196045 Inf -3.775 0.5264
## -0.0459319 0.01476487 Inf -3.111 0.9799
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0411385 0.01484166 Inf -2.772 0.9996
## -0.0077695 0.00864157 Inf -0.899 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## 0.0047885 0.00548158 Inf 0.874 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0249866 0.01156367 Inf -2.161 1.0000
## -0.0689695 0.02242879 Inf -3.075 0.9853
## 0.0017731 0.00573189 Inf 0.309 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## 0.0044621 0.00553285 Inf 0.806 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.1483764 0.02999797 Inf -4.946 0.0090
## -0.0754524 0.02361213 Inf -3.195 0.9609
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## 0.0043380 0.00555258 Inf 0.781 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0838405 0.02210071 Inf -3.794 0.5072
## -0.0009009 0.00697511 Inf -0.129 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## 0.0005832 0.00620257 Inf 0.094 1.0000
## 0.0048924 0.00534310 Inf 0.916 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0023629 0.00588272 Inf 0.402 1.0000
## 0.0052593 0.00566134 Inf 0.929 1.0000
## 0.0049446 0.00528584 Inf 0.935 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0465204 0.03196225 Inf -1.455 1.0000
## 0.0031309 0.00575092 Inf 0.544 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0014371 0.00658594 Inf -0.218 1.0000
## -0.0888800 0.02591123 Inf -3.430 0.8459
## -0.8902441 0.01925131 Inf -46.243 <.0001
## -0.6915849 0.04269144 Inf -16.200 <.0001
## 0.0052593 0.00776305 Inf 0.677 1.0000
## 0.0030034 0.00577251 Inf 0.520 1.0000
## 0.0048924 0.00534310 Inf 0.916 1.0000
## 0.0045171 0.00521331 Inf 0.866 1.0000
## 0.0047957 0.00564526 Inf 0.850 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00566134 Inf 0.929 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0600990 0.03718334 Inf -1.616 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0044782 0.00553030 Inf 0.810 1.0000
## 0.0043595 0.00583502 Inf 0.747 1.0000
## 0.0023086 0.00565189 Inf 0.408 1.0000
## -0.1597518 0.03376451 Inf -4.731 0.0236
## -0.0026354 0.01162868 Inf -0.227 1.0000
## 0.0005244 0.00621345 Inf 0.084 1.0000
## -0.0163838 0.00920049 Inf -1.781 1.0000
## -0.9624608 0.00671706 Inf -143.286 <.0001
## -0.9622839 0.00788365 Inf -122.061 <.0001
## -0.0244541 0.01145121 Inf -2.136 1.0000
## -0.0199355 0.01170215 Inf -1.704 1.0000
## 0.0025960 0.00560968 Inf 0.463 1.0000
## 0.0047957 0.00564526 Inf 0.850 1.0000
## -0.3061488 0.08424652 Inf -3.634 0.6692
## -0.0162303 0.00969160 Inf -1.675 1.0000
## -0.0004791 0.00617850 Inf -0.078 1.0000
## 0.0049955 0.00515954 Inf 0.968 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.1783934 0.03279160 Inf -5.440 0.0007
## -0.0203639 0.01180896 Inf -1.724 1.0000
## 0.0033499 0.00550148 Inf 0.609 1.0000
## 0.0048674 0.00563246 Inf 0.864 1.0000
## 0.0052593 0.00776305 Inf 0.677 1.0000
## -0.0503003 0.01657038 Inf -3.036 0.9898
## -0.5672051 0.04049302 Inf -14.007 <.0001
## 0.0050357 0.00515510 Inf 0.977 1.0000
## 0.0042916 0.00573655 Inf 0.748 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00566134 Inf 0.929 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0353774 0.02729533 Inf -1.296 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0052593 0.00540928 Inf 0.972 1.0000
## 0.0052593 0.00566134 Inf 0.929 1.0000
## 0.0052593 0.00524560 Inf 1.003 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## -0.0560863 0.03569115 Inf -1.571 1.0000
## 0.0033653 0.00571153 Inf 0.589 1.0000
## 0.0052593 0.00529341 Inf 0.994 1.0000
## 0.0052593 0.00513060 Inf 1.025 1.0000
## 0.0052593 0.00556341 Inf 0.945 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0013663 0.00495804 Inf 0.276 1.0000
## -0.0612945 0.01778367 Inf -3.447 0.8340
## -0.0036833 0.00631458 Inf -0.583 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00487699 Inf 0.472 1.0000
## 0.0020346 0.00442846 Inf 0.459 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## -0.0350408 0.01272585 Inf -2.754 0.9997
## -0.0537032 0.01533378 Inf -3.502 0.7902
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00487699 Inf 0.472 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0246932 0.02089516 Inf -1.182 1.0000
## 0.0019713 0.00464177 Inf 0.425 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0020776 0.00427918 Inf 0.486 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0015193 0.00532247 Inf -0.285 1.0000
## -0.0164351 0.00966702 Inf -1.700 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0007173 0.00800741 Inf 0.090 1.0000
## -0.0858524 0.02177873 Inf -3.942 0.3642
## -0.0488900 0.01449161 Inf -3.374 0.8831
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0440966 0.01456944 Inf -3.027 0.9906
## -0.0107276 0.00815585 Inf -1.315 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## 0.0018304 0.00466760 Inf 0.392 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0279448 0.01120963 Inf -2.493 1.0000
## -0.0719277 0.02225068 Inf -3.233 0.9494
## -0.0011850 0.00496193 Inf -0.239 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## 0.0015040 0.00472803 Inf 0.318 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.1513345 0.02986488 Inf -5.067 0.0051
## -0.0784105 0.02344312 Inf -3.345 0.8997
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## 0.0013799 0.00475122 Inf 0.290 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0867987 0.02192016 Inf -3.960 0.3485
## -0.0038590 0.00635934 Inf -0.607 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## -0.0023750 0.00549985 Inf -0.432 1.0000
## 0.0019343 0.00450405 Inf 0.429 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0005952 0.00513491 Inf -0.116 1.0000
## 0.0023012 0.00487699 Inf 0.472 1.0000
## 0.0019865 0.00443592 Inf 0.448 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0494786 0.03183696 Inf -1.554 1.0000
## 0.0001728 0.00498268 Inf 0.035 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0043953 0.00593026 Inf -0.741 1.0000
## -0.0918381 0.02575743 Inf -3.566 0.7346
## -0.8932022 0.01902091 Inf -46.959 <.0001
## -0.6945430 0.04258983 Inf -16.308 <.0001
## 0.0023012 0.00721105 Inf 0.319 1.0000
## 0.0000453 0.00500771 Inf 0.009 1.0000
## 0.0019343 0.00450405 Inf 0.429 1.0000
## 0.0015589 0.00434970 Inf 0.358 1.0000
## 0.0018375 0.00485877 Inf 0.378 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00487699 Inf 0.472 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0630572 0.03707603 Inf -1.701 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0015201 0.00472503 Inf 0.322 1.0000
## 0.0014014 0.00507841 Inf 0.276 1.0000
## -0.0006495 0.00486881 Inf -0.133 1.0000
## -0.1627099 0.03364620 Inf -4.836 0.0149
## -0.0055935 0.01127073 Inf -0.496 1.0000
## -0.0024337 0.00551216 Inf -0.442 1.0000
## -0.0193419 0.00874893 Inf -2.211 1.0000
## -0.9654189 0.00604394 Inf -159.733 <.0001
## -0.9652420 0.00731853 Inf -131.890 <.0001
## -0.0274122 0.01109347 Inf -2.471 1.0000
## -0.0228937 0.01135139 Inf -2.017 1.0000
## -0.0003621 0.00481948 Inf -0.075 1.0000
## 0.0018375 0.00485877 Inf 0.378 1.0000
## -0.3091070 0.08419818 Inf -3.671 0.6320
## -0.0191884 0.00926397 Inf -2.071 1.0000
## -0.0034372 0.00547351 Inf -0.628 1.0000
## 0.0020373 0.00428458 Inf 0.476 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.1813515 0.03266951 Inf -5.551 0.0004
## -0.0233221 0.01146155 Inf -2.035 1.0000
## 0.0003918 0.00469237 Inf 0.084 1.0000
## 0.0019093 0.00484382 Inf 0.394 1.0000
## 0.0023012 0.00721105 Inf 0.319 1.0000
## -0.0532584 0.01632766 Inf -3.262 0.9386
## -0.5701633 0.04038793 Inf -14.117 <.0001
## 0.0020776 0.00427918 Inf 0.486 1.0000
## 0.0013335 0.00496502 Inf 0.269 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00487699 Inf 0.472 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0383355 0.02714796 Inf -1.412 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## 0.0023012 0.00458199 Inf 0.502 1.0000
## 0.0023012 0.00487699 Inf 0.472 1.0000
## 0.0023012 0.00438755 Inf 0.524 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0590444 0.03557926 Inf -1.660 1.0000
## 0.0004072 0.00493695 Inf 0.082 1.0000
## 0.0023012 0.00444460 Inf 0.518 1.0000
## 0.0023012 0.00424939 Inf 0.542 1.0000
## 0.0023012 0.00476296 Inf 0.483 1.0000
## -0.0009349 0.00438865 Inf -0.213 1.0000
## -0.0635957 0.01764011 Inf -3.605 0.6972
## -0.0059845 0.00588123 Inf -1.018 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0002665 0.00377945 Inf -0.071 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0373419 0.01252235 Inf -2.982 0.9940
## -0.0560044 0.01516669 Inf -3.693 0.6103
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0269943 0.02077099 Inf -1.300 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## -0.0002236 0.00360333 Inf -0.062 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0038205 0.00479878 Inf -0.796 1.0000
## -0.0187363 0.00939366 Inf -1.995 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0015839 0.00766823 Inf -0.207 1.0000
## -0.0881536 0.02166209 Inf -4.069 0.2600
## -0.0511912 0.01431440 Inf -3.576 0.7247
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01439284 Inf -3.224 0.9524
## -0.0130288 0.00782796 Inf -1.664 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0004708 0.00405722 Inf -0.116 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0626608 0.01782148 Inf -3.516 0.7786
## -0.0050496 0.00641114 Inf -0.788 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00499880 Inf 0.187 1.0000
## 0.0006684 0.00456239 Inf 0.146 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## -0.0364070 0.01277742 Inf -2.849 0.9988
## -0.0550695 0.01537740 Inf -3.581 0.7200
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00499880 Inf 0.187 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0260594 0.02092611 Inf -1.245 1.0000
## 0.0006051 0.00476975 Inf 0.127 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0007113 0.00441762 Inf 0.161 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0028856 0.00543585 Inf -0.531 1.0000
## -0.0178014 0.00973262 Inf -1.829 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0006490 0.00808263 Inf -0.080 1.0000
## -0.0872187 0.02180986 Inf -3.999 0.3151
## -0.0502563 0.01453759 Inf -3.457 0.8262
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0454629 0.01461497 Inf -3.111 0.9799
## -0.0120939 0.00823242 Inf -1.469 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## 0.0004641 0.00479496 Inf 0.097 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0293110 0.01126753 Inf -2.601 1.0000
## -0.0732939 0.02228105 Inf -3.290 0.9271
## -0.0025513 0.00508323 Inf -0.502 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## 0.0001377 0.00485395 Inf 0.028 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.1527008 0.02988744 Inf -5.109 0.0041
## -0.0797768 0.02347200 Inf -3.399 0.8673
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## 0.0000136 0.00487660 Inf 0.003 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0881649 0.02195110 Inf -4.016 0.3009
## -0.0052252 0.00645528 Inf -0.809 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## -0.0037412 0.00560998 Inf -0.667 1.0000
## 0.0005680 0.00463585 Inf 0.123 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0019615 0.00525197 Inf -0.373 1.0000
## 0.0009349 0.00499880 Inf 0.187 1.0000
## 0.0006202 0.00456966 Inf 0.136 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0508448 0.03185793 Inf -1.596 1.0000
## -0.0011935 0.00510291 Inf -0.234 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0057615 0.00603321 Inf -0.955 1.0000
## -0.0932044 0.02578378 Inf -3.615 0.6879
## -0.8945685 0.01904547 Inf -46.970 <.0001
## -0.6959093 0.04260167 Inf -16.335 <.0001
## 0.0009349 0.00729398 Inf 0.128 1.0000
## -0.0013210 0.00512740 Inf -0.258 1.0000
## 0.0005680 0.00463585 Inf 0.123 1.0000
## 0.0001927 0.00448623 Inf 0.043 1.0000
## 0.0004713 0.00498124 Inf 0.095 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00499880 Inf 0.187 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0644234 0.03709420 Inf -1.737 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0001538 0.00485102 Inf 0.032 1.0000
## 0.0000352 0.00519589 Inf 0.007 1.0000
## -0.0020158 0.00499214 Inf -0.404 1.0000
## -0.1640761 0.03366616 Inf -4.874 0.0126
## -0.0069598 0.01132544 Inf -0.615 1.0000
## -0.0038000 0.00562207 Inf -0.676 1.0000
## -0.0207082 0.00882183 Inf -2.347 1.0000
## -0.9667852 0.00612983 Inf -157.718 <.0001
## -0.9666083 0.00738958 Inf -130.807 <.0001
## -0.0287785 0.01115193 Inf -2.581 1.0000
## -0.0242599 0.01140807 Inf -2.127 1.0000
## -0.0017284 0.00494392 Inf -0.350 1.0000
## 0.0004713 0.00498124 Inf 0.095 1.0000
## -0.3104732 0.08420568 Inf -3.687 0.6159
## -0.0205547 0.00933282 Inf -2.202 1.0000
## -0.0048035 0.00558454 Inf -0.860 1.0000
## 0.0006711 0.00442287 Inf 0.152 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.1827178 0.03268994 Inf -5.589 0.0003
## -0.0246883 0.01151773 Inf -2.144 1.0000
## -0.0009744 0.00481974 Inf -0.202 1.0000
## 0.0005430 0.00496663 Inf 0.109 1.0000
## 0.0009349 0.00729398 Inf 0.128 1.0000
## -0.0546247 0.01636862 Inf -3.337 0.9038
## -0.5715295 0.04040141 Inf -14.146 <.0001
## 0.0007113 0.00441762 Inf 0.161 1.0000
## -0.0000328 0.00508515 Inf -0.006 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00499880 Inf 0.187 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0397018 0.02717227 Inf -1.461 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0009349 0.00471143 Inf 0.198 1.0000
## 0.0009349 0.00499880 Inf 0.187 1.0000
## 0.0009349 0.00452256 Inf 0.207 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## -0.0604106 0.03559814 Inf -1.697 1.0000
## -0.0009591 0.00505816 Inf -0.190 1.0000
## 0.0009349 0.00457792 Inf 0.204 1.0000
## 0.0009349 0.00438865 Inf 0.213 1.0000
## 0.0009349 0.00488761 Inf 0.191 1.0000
## 0.0576112 0.01823257 Inf 3.160 0.9701
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01780172 Inf 3.572 0.7282
## 0.0633292 0.01768335 Inf 3.581 0.7200
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0262537 0.02127481 Inf 1.234 1.0000
## 0.0075913 0.02291857 Inf 0.331 1.0000
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01780172 Inf 3.572 0.7282
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0366013 0.02697652 Inf 1.357 1.0000
## 0.0632658 0.01773779 Inf 3.567 0.7335
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0633721 0.01764668 Inf 3.591 0.7106
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0597752 0.01791860 Inf 3.336 0.9045
## 0.0448594 0.01962259 Inf 2.286 1.0000
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0620118 0.01889651 Inf 3.282 0.9305
## -0.0245579 0.02764185 Inf -0.888 1.0000
## 0.0124045 0.02236630 Inf 0.555 1.0000
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0171979 0.02241964 Inf 0.767 1.0000
## 0.0505669 0.01893419 Inf 2.671 0.9999
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0631249 0.01774417 Inf 3.558 0.7420
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0333498 0.02041135 Inf 1.634 1.0000
## -0.0106332 0.02801700 Inf -0.380 1.0000
## 0.0601095 0.01781570 Inf 3.374 0.8829
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0627985 0.01775925 Inf 3.536 0.7612
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## -0.0900400 0.03437824 Inf -2.619 1.0000
## -0.0171160 0.02897211 Inf -0.591 1.0000
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0626744 0.01776509 Inf 3.528 0.7683
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## -0.0255042 0.02775334 Inf -0.919 1.0000
## 0.0574355 0.01824770 Inf 3.148 0.9728
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0589196 0.01796991 Inf 3.279 0.9317
## 0.0632288 0.01770214 Inf 3.572 0.7288
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0606993 0.01786620 Inf 3.397 0.8682
## 0.0635957 0.01780172 Inf 3.572 0.7282
## 0.0632810 0.01768508 Inf 3.578 0.7228
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0118159 0.03610848 Inf 0.327 1.0000
## 0.0614673 0.01782509 Inf 3.448 0.8327
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0568992 0.01810135 Inf 3.143 0.9737
## -0.0305436 0.03087365 Inf -0.989 1.0000
## -0.8319077 0.02570518 Inf -32.363 <.0001
## -0.6332485 0.04594823 Inf -13.782 <.0001
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0613398 0.01783176 Inf 3.440 0.8389
## 0.0632288 0.01770214 Inf 3.572 0.7288
## 0.0628535 0.01766245 Inf 3.559 0.7410
## 0.0631320 0.01779543 Inf 3.548 0.7509
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01780172 Inf 3.572 0.7282
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## -0.0017627 0.04079953 Inf -0.043 1.0000
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0628146 0.01775849 Inf 3.537 0.7602
## 0.0626959 0.01785544 Inf 3.511 0.7826
## 0.0606450 0.01779140 Inf 3.409 0.8608
## -0.1014154 0.03771093 Inf -2.689 0.9999
## 0.0557010 0.02047971 Inf 2.720 0.9998
## 0.0588608 0.01797353 Inf 3.275 0.9334
## 0.0419526 0.01918232 Inf 2.187 1.0000
## -0.9041244 0.01825033 Inf -49.540 <.0001
## -0.9039475 0.01871150 Inf -48.310 <.0001
## 0.0338823 0.02034840 Inf 1.665 1.0000
## 0.0384008 0.02049567 Inf 1.874 1.0000
## 0.0609324 0.01777873 Inf 3.427 0.8480
## 0.0631320 0.01779543 Inf 3.548 0.7509
## -0.2478125 0.08591365 Inf -2.884 0.9980
## 0.0421061 0.01942286 Inf 2.168 1.0000
## 0.0578573 0.01795922 Inf 3.222 0.9530
## 0.0633318 0.01764787 Inf 3.589 0.7130
## 0.0635957 0.01777082 Inf 3.579 0.7224
## -0.1200570 0.03684457 Inf -3.258 0.9399
## 0.0379724 0.02055634 Inf 1.847 1.0000
## 0.0616863 0.01774672 Inf 3.476 0.8116
## 0.0632038 0.01779156 Inf 3.552 0.7465
## 0.0635957 0.01857728 Inf 3.423 0.8508
## 0.0080361 0.02359528 Inf 0.341 1.0000
## -0.5088688 0.04389511 Inf -11.593 <.0001
## 0.0633721 0.01764668 Inf 3.591 0.7106
## 0.0626280 0.01782333 Inf 3.514 0.7805
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01780172 Inf 3.572 0.7282
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0229590 0.03205564 Inf 0.716 1.0000
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0635957 0.01772317 Inf 3.588 0.7134
## 0.0635957 0.01780172 Inf 3.572 0.7282
## 0.0635957 0.01767390 Inf 3.598 0.7039
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0022501 0.03944512 Inf 0.057 1.0000
## 0.0617017 0.01781300 Inf 3.464 0.8210
## 0.0635957 0.01768815 Inf 3.595 0.7066
## 0.0635957 0.01764011 Inf 3.605 0.6972
## 0.0635957 0.01777082 Inf 3.579 0.7224
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00634953 Inf 0.943 1.0000
## 0.0057180 0.00601163 Inf 0.951 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## -0.0313574 0.01334891 Inf -2.349 1.0000
## -0.0500199 0.01585272 Inf -3.155 0.9711
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00634953 Inf 0.943 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0210099 0.02128161 Inf -0.987 1.0000
## 0.0056547 0.00617038 Inf 0.916 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0057609 0.00590257 Inf 0.976 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0021640 0.00669456 Inf 0.323 1.0000
## -0.0127518 0.01047880 Inf -1.217 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0044006 0.00897953 Inf 0.490 1.0000
## -0.0821691 0.02214617 Inf -3.710 0.5922
## -0.0452067 0.01504006 Inf -3.006 0.9924
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0404133 0.01511555 Inf -2.674 0.9999
## -0.0070443 0.00910590 Inf -0.774 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## 0.0055137 0.00618971 Inf 0.891 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0242614 0.01191372 Inf -2.036 1.0000
## -0.0682444 0.02261071 Inf -3.018 0.9914
## 0.0024983 0.00641193 Inf 0.390 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## 0.0051873 0.00623510 Inf 0.832 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.1476512 0.03013426 Inf -4.900 0.0112
## -0.0747272 0.02378498 Inf -3.142 0.9740
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## 0.0050632 0.00625259 Inf 0.810 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0831154 0.02228526 Inf -3.730 0.5725
## -0.0001757 0.00754355 Inf -0.023 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## 0.0013084 0.00683577 Inf 0.191 1.0000
## 0.0056176 0.00606743 Inf 0.926 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0030881 0.00654720 Inf 0.472 1.0000
## 0.0059845 0.00634953 Inf 0.943 1.0000
## 0.0056698 0.00601707 Inf 0.942 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0457952 0.03209030 Inf -1.427 1.0000
## 0.0038561 0.00642917 Inf 0.600 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0007119 0.00718516 Inf -0.099 1.0000
## -0.0881548 0.02606880 Inf -3.382 0.8782
## -0.8895189 0.01946814 Inf -45.691 <.0001
## -0.6908597 0.04278923 Inf -16.146 <.0001
## 0.0059845 0.00827833 Inf 0.723 1.0000
## 0.0037286 0.00644847 Inf 0.578 1.0000
## 0.0056176 0.00606743 Inf 0.926 1.0000
## 0.0052423 0.00595338 Inf 0.881 1.0000
## 0.0055209 0.00633512 Inf 0.871 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00634953 Inf 0.943 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0593739 0.03729338 Inf -1.592 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0052034 0.00623284 Inf 0.835 1.0000
## 0.0050847 0.00650471 Inf 0.782 1.0000
## 0.0030338 0.00634060 Inf 0.478 1.0000
## -0.1590266 0.03388569 Inf -4.693 0.0278
## -0.0019102 0.01197814 Inf -0.159 1.0000
## 0.0012496 0.00684563 Inf 0.183 1.0000
## -0.0156586 0.00963728 Inf -1.625 1.0000
## -0.9617356 0.00731168 Inf -131.534 <.0001
## -0.9615587 0.00839607 Inf -114.525 <.0001
## -0.0237289 0.01180461 Inf -2.010 1.0000
## -0.0192104 0.01204841 Inf -1.594 1.0000
## 0.0033212 0.00630306 Inf 0.527 1.0000
## 0.0055209 0.00633512 Inf 0.871 1.0000
## -0.3054237 0.08429540 Inf -3.623 0.6797
## -0.0155051 0.01010720 Inf -1.534 1.0000
## 0.0002461 0.00681378 Inf 0.036 1.0000
## 0.0057206 0.00590644 Inf 0.969 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.1776682 0.03291642 Inf -5.398 0.0009
## -0.0196387 0.01215214 Inf -1.616 1.0000
## 0.0040751 0.00620708 Inf 0.657 1.0000
## 0.0055926 0.00632373 Inf 0.884 1.0000
## 0.0059845 0.00827833 Inf 0.723 1.0000
## -0.0495751 0.01681598 Inf -2.948 0.9959
## -0.5664800 0.04059564 Inf -13.954 <.0001
## 0.0057609 0.00590257 Inf 0.976 1.0000
## 0.0050168 0.00641651 Inf 0.782 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00634953 Inf 0.943 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0346522 0.02744529 Inf -1.263 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0059845 0.00612586 Inf 0.977 1.0000
## 0.0059845 0.00634953 Inf 0.943 1.0000
## 0.0059845 0.00598182 Inf 1.000 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## -0.0553611 0.03580580 Inf -1.546 1.0000
## 0.0040905 0.00639400 Inf 0.640 1.0000
## 0.0059845 0.00602378 Inf 0.993 1.0000
## 0.0059845 0.00588123 Inf 1.018 1.0000
## 0.0059845 0.00626237 Inf 0.956 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0002665 0.00393414 Inf -0.068 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0373419 0.01256990 Inf -2.971 0.9947
## -0.0560044 0.01520598 Inf -3.683 0.6200
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0269943 0.02079969 Inf -1.298 1.0000
## -0.0003298 0.00417286 Inf -0.079 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## -0.0002236 0.00376527 Inf -0.059 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0038205 0.00492154 Inf -0.776 1.0000
## -0.0187363 0.00945696 Inf -1.981 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0015839 0.00774565 Inf -0.204 1.0000
## -0.0881536 0.02168962 Inf -4.064 0.2638
## -0.0511912 0.01435602 Inf -3.566 0.7343
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0463978 0.01443423 Inf -3.214 0.9553
## -0.0130288 0.00790382 Inf -1.648 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0004708 0.00420170 Inf -0.112 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0302459 0.01103121 Inf -2.742 0.9997
## -0.0742288 0.02216329 Inf -3.349 0.8973
## -0.0034862 0.00452894 Inf -0.770 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0007972 0.00426902 Inf -0.187 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1536357 0.02979971 Inf -5.156 0.0033
## -0.0807117 0.02336029 Inf -3.455 0.8277
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0009213 0.00429481 Inf -0.215 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0890998 0.02183163 Inf -4.081 0.2514
## -0.0061602 0.00602914 Inf -1.022 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0002665 0.00694450 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0373419 0.01381126 Inf -2.704 0.9999
## -0.0560044 0.01624717 Inf -3.447 0.8337
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0269943 0.02157257 Inf -1.251 1.0000
## -0.0003298 0.00708247 Inf -0.047 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0002236 0.00685025 Inf -0.033 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0038205 0.00754786 Inf -0.506 1.0000
## -0.0187363 0.01105363 Inf -1.695 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0015839 0.00963035 Inf -0.164 1.0000
## -0.0881536 0.02243185 Inf -3.930 0.3752
## -0.0511912 0.01545457 Inf -3.312 0.9164
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0463978 0.01552725 Inf -2.988 0.9936
## -0.0130288 0.00975802 Inf -1.335 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0004708 0.00709950 Inf -0.066 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0302459 0.01242724 Inf -2.434 1.0000
## -0.0742288 0.02289017 Inf -3.243 0.9458
## -0.0034862 0.00729794 Inf -0.478 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0007972 0.00713955 Inf -0.112 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1536357 0.03034421 Inf -5.063 0.0052
## -0.0807117 0.02405102 Inf -3.356 0.8935
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0009213 0.00715500 Inf -0.129 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0890998 0.02256920 Inf -3.948 0.3591
## -0.0061602 0.00831259 Inf -0.741 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## -0.0002665 0.00414988 Inf -0.064 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0373419 0.01263908 Inf -2.954 0.9956
## -0.0560044 0.01526322 Inf -3.669 0.6339
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0269943 0.02084158 Inf -1.295 1.0000
## -0.0003298 0.00437684 Inf -0.075 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## -0.0002236 0.00399015 Inf -0.056 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0038205 0.00509564 Inf -0.750 1.0000
## -0.0187363 0.00954873 Inf -1.962 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0015839 0.00785742 Inf -0.202 1.0000
## -0.0881536 0.02172978 Inf -4.057 0.2694
## -0.0511912 0.01441663 Inf -3.551 0.7480
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0463978 0.01449452 Inf -3.201 0.9594
## -0.0130288 0.00801338 Inf -1.626 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0004708 0.00440435 Inf -0.107 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0302459 0.01110998 Inf -2.722 0.9998
## -0.0742288 0.02220260 Inf -3.343 0.9005
## -0.0034862 0.00471755 Inf -0.739 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0007972 0.00446862 Inf -0.178 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1536357 0.02982895 Inf -5.151 0.0034
## -0.0807117 0.02339758 Inf -3.450 0.8318
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0009213 0.00449326 Inf -0.205 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0890998 0.02187154 Inf -4.074 0.2568
## -0.0061602 0.00617208 Inf -0.998 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0046761 0.00528123 Inf -0.885 1.0000
## -0.0003669 0.00423054 Inf -0.087 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0028964 0.00489873 Inf -0.591 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## -0.0003147 0.00415788 Inf -0.076 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0517797 0.03180292 Inf -1.628 1.0000
## -0.0021284 0.00473831 Inf -0.449 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0066964 0.00572931 Inf -1.169 1.0000
## -0.0941393 0.02571609 Inf -3.661 0.6425
## -0.8955034 0.01894589 Inf -47.266 <.0001
## -0.6968442 0.04255786 Inf -16.374 <.0001
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0022559 0.00476472 Inf -0.473 1.0000
## -0.0003669 0.00423054 Inf -0.087 1.0000
## -0.0007422 0.00406618 Inf -0.183 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0653583 0.03704708 Inf -1.764 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0007811 0.00446543 Inf -0.175 1.0000
## -0.0008997 0.00483791 Inf -0.186 1.0000
## -0.0029507 0.00461908 Inf -0.639 1.0000
## -0.1650110 0.03361420 Inf -4.909 0.0107
## -0.0078947 0.01116665 Inf -0.707 1.0000
## -0.0047349 0.00529409 Inf -0.894 1.0000
## -0.0216431 0.00861885 Inf -2.511 1.0000
## -0.9677201 0.00581975 Inf -166.282 <.0001
## -0.9675432 0.00713443 Inf -135.616 <.0001
## -0.0297134 0.01099268 Inf -2.703 0.9999
## -0.0251948 0.01125212 Inf -2.239 1.0000
## -0.0026633 0.00456682 Inf -0.583 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## -0.3114081 0.08418458 Inf -3.699 0.6036
## -0.0214896 0.00914118 Inf -2.351 1.0000
## -0.0057384 0.00525450 Inf -1.092 1.0000
## -0.0002638 0.00399598 Inf -0.066 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1836527 0.03263634 Inf -5.627 0.0003
## -0.0256232 0.01136333 Inf -2.255 1.0000
## -0.0019093 0.00443183 Inf -0.431 1.0000
## -0.0003919 0.00459062 Inf -0.085 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0555596 0.01626138 Inf -3.417 0.8554
## -0.5724644 0.04035591 Inf -14.185 <.0001
## -0.0002236 0.00399015 Inf -0.056 1.0000
## -0.0009677 0.00471880 Inf -0.205 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0406367 0.02710757 Inf -1.499 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0002665 0.00399766 Inf -0.067 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0373419 0.01258993 Inf -2.966 0.9950
## -0.0560044 0.01522254 Inf -3.679 0.6240
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0269943 0.02081180 Inf -1.297 1.0000
## -0.0003298 0.00423279 Inf -0.078 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## -0.0002236 0.00383159 Inf -0.058 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0038205 0.00497246 Inf -0.768 1.0000
## -0.0187363 0.00948356 Inf -1.976 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0015839 0.00777810 Inf -0.204 1.0000
## -0.0881536 0.02170123 Inf -4.062 0.2654
## -0.0511912 0.01437355 Inf -3.561 0.7383
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0463978 0.01445167 Inf -3.211 0.9565
## -0.0130288 0.00793562 Inf -1.642 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0004708 0.00426123 Inf -0.110 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0302459 0.01105403 Inf -2.736 0.9998
## -0.0742288 0.02217465 Inf -3.347 0.8982
## -0.0034862 0.00458422 Inf -0.760 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0007972 0.00432763 Inf -0.184 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1536357 0.02980816 Inf -5.154 0.0033
## -0.0807117 0.02337107 Inf -3.453 0.8289
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0009213 0.00435307 Inf -0.212 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0890998 0.02184317 Inf -4.079 0.2530
## -0.0061602 0.00607078 Inf -1.015 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0046761 0.00516248 Inf -0.906 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0028964 0.00477047 Inf -0.607 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0003147 0.00400597 Inf -0.079 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0517797 0.03178342 Inf -1.629 1.0000
## -0.0021284 0.00460559 Inf -0.462 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0002665 0.00377945 Inf -0.071 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0373419 0.01252235 Inf -2.982 0.9940
## -0.0560044 0.01516669 Inf -3.693 0.6103
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0269943 0.02077099 Inf -1.300 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## -0.0002236 0.00360333 Inf -0.062 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0038205 0.00479878 Inf -0.796 1.0000
## -0.0187363 0.00939366 Inf -1.995 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0015839 0.00766823 Inf -0.207 1.0000
## -0.0881536 0.02166209 Inf -4.069 0.2600
## -0.0511912 0.01431440 Inf -3.576 0.7247
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01439284 Inf -3.224 0.9524
## -0.0130288 0.00782796 Inf -1.664 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0004708 0.00405722 Inf -0.116 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0002665 0.00434887 Inf -0.061 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## -0.0002665 0.00414988 Inf -0.064 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0373419 0.01263908 Inf -2.954 0.9956
## -0.0560044 0.01526322 Inf -3.669 0.6339
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0269943 0.02084158 Inf -1.295 1.0000
## -0.0003298 0.00437684 Inf -0.075 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## -0.0002236 0.00399015 Inf -0.056 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0038205 0.00509564 Inf -0.750 1.0000
## -0.0187363 0.00954873 Inf -1.962 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0015839 0.00785742 Inf -0.202 1.0000
## -0.0881536 0.02172978 Inf -4.057 0.2694
## -0.0511912 0.01441663 Inf -3.551 0.7480
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0463978 0.01449452 Inf -3.201 0.9594
## -0.0130288 0.00801338 Inf -1.626 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0004708 0.00440435 Inf -0.107 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0302459 0.01110998 Inf -2.722 0.9998
## -0.0742288 0.02220260 Inf -3.343 0.9005
## -0.0034862 0.00471755 Inf -0.739 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0007972 0.00446862 Inf -0.178 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1536357 0.02982895 Inf -5.151 0.0034
## -0.0807117 0.02339758 Inf -3.450 0.8318
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0009213 0.00449326 Inf -0.205 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0890998 0.02187154 Inf -4.074 0.2568
## -0.0061602 0.00617208 Inf -0.998 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0046761 0.00528123 Inf -0.885 1.0000
## -0.0003669 0.00423054 Inf -0.087 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0028964 0.00489873 Inf -0.591 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## -0.0003147 0.00415788 Inf -0.076 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0517797 0.03180292 Inf -1.628 1.0000
## -0.0021284 0.00473831 Inf -0.449 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0066964 0.00572931 Inf -1.169 1.0000
## -0.0941393 0.02571609 Inf -3.661 0.6425
## -0.8955034 0.01894589 Inf -47.266 <.0001
## -0.6968442 0.04255786 Inf -16.374 <.0001
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0022559 0.00476472 Inf -0.473 1.0000
## -0.0003669 0.00423054 Inf -0.087 1.0000
## -0.0007422 0.00406618 Inf -0.183 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0653583 0.03704708 Inf -1.764 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0007811 0.00446543 Inf -0.175 1.0000
## -0.0008997 0.00483791 Inf -0.186 1.0000
## -0.0029507 0.00461908 Inf -0.639 1.0000
## -0.1650110 0.03361420 Inf -4.909 0.0107
## -0.0078947 0.01116665 Inf -0.707 1.0000
## -0.0047349 0.00529409 Inf -0.894 1.0000
## -0.0216431 0.00861885 Inf -2.511 1.0000
## -0.9677201 0.00581975 Inf -166.282 <.0001
## -0.9675432 0.00713443 Inf -135.616 <.0001
## -0.0297134 0.01099268 Inf -2.703 0.9999
## -0.0251948 0.01125212 Inf -2.239 1.0000
## -0.0026633 0.00456682 Inf -0.583 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## -0.3114081 0.08418458 Inf -3.699 0.6036
## -0.0214896 0.00914118 Inf -2.351 1.0000
## -0.0057384 0.00525450 Inf -1.092 1.0000
## -0.0002638 0.00399598 Inf -0.066 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1836527 0.03263634 Inf -5.627 0.0003
## -0.0256232 0.01136333 Inf -2.255 1.0000
## -0.0019093 0.00443183 Inf -0.431 1.0000
## -0.0003919 0.00459062 Inf -0.085 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0555596 0.01626138 Inf -3.417 0.8554
## -0.5724644 0.04035591 Inf -14.185 <.0001
## -0.0002236 0.00399015 Inf -0.056 1.0000
## -0.0009677 0.00471880 Inf -0.205 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0406367 0.02710757 Inf -1.499 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0002665 0.00447347 Inf -0.060 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0373419 0.01274899 Inf -2.929 0.9967
## -0.0560044 0.01535436 Inf -3.647 0.6558
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0269943 0.02090841 Inf -1.291 1.0000
## -0.0003298 0.00468478 Inf -0.070 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0002236 0.00432570 Inf -0.052 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0038205 0.00536246 Inf -0.712 1.0000
## -0.0187363 0.00969374 Inf -1.933 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0015839 0.00803302 Inf -0.197 1.0000
## -0.0881536 0.02179389 Inf -4.045 0.2785
## -0.0511912 0.01451309 Inf -3.527 0.7689
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0463978 0.01459046 Inf -3.180 0.9651
## -0.0130288 0.00818564 Inf -1.592 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0004708 0.00471049 Inf -0.100 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0302459 0.01123486 Inf -2.692 0.9999
## -0.0742288 0.02226535 Inf -3.334 0.9056
## -0.0034862 0.00500457 Inf -0.697 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0007972 0.00477064 Inf -0.167 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1536357 0.02987569 Inf -5.143 0.0035
## -0.0807117 0.02345714 Inf -3.441 0.8383
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0009213 0.00479373 Inf -0.192 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0890998 0.02193524 Inf -4.062 0.2655
## -0.0061602 0.00639413 Inf -0.963 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0046761 0.00553912 Inf -0.844 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0028964 0.00517571 Inf -0.560 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## -0.0003147 0.00448089 Inf -0.070 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0517797 0.03184676 Inf -1.626 1.0000
## -0.0021284 0.00502415 Inf -0.424 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0066964 0.00596786 Inf -1.122 1.0000
## -0.0941393 0.02577029 Inf -3.653 0.6502
## -0.8955034 0.01901939 Inf -47.084 <.0001
## -0.6968442 0.04259063 Inf -16.361 <.0001
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0022559 0.00504906 Inf -0.447 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## -0.0007422 0.00439594 Inf -0.169 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0653583 0.03708472 Inf -1.762 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0007811 0.00476765 Inf -0.164 1.0000
## -0.0008997 0.00511818 Inf -0.176 1.0000
## -0.0029507 0.00491185 Inf -0.601 1.0000
## -0.1650110 0.03365568 Inf -4.903 0.0110
## -0.0078947 0.01129091 Inf -0.699 1.0000
## -0.0047349 0.00555138 Inf -0.853 1.0000
## -0.0216431 0.00877924 Inf -2.465 1.0000
## -0.9677201 0.00605474 Inf -159.829 <.0001
## -0.9675432 0.00732738 Inf -132.045 <.0001
## -0.0297134 0.01111888 Inf -2.672 0.9999
## -0.0251948 0.01137544 Inf -2.215 1.0000
## -0.0026633 0.00486274 Inf -0.548 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## -0.3114081 0.08420115 Inf -3.698 0.6044
## -0.0214896 0.00929256 Inf -2.313 1.0000
## -0.0057384 0.00551363 Inf -1.041 1.0000
## -0.0002638 0.00433108 Inf -0.061 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1836527 0.03267906 Inf -5.620 0.0003
## -0.0256232 0.01148545 Inf -2.231 1.0000
## -0.0019093 0.00473620 Inf -0.403 1.0000
## -0.0003919 0.00488510 Inf -0.080 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0555596 0.01634696 Inf -3.399 0.8673
## -0.5724644 0.04039047 Inf -14.173 <.0001
## -0.0002236 0.00432570 Inf -0.052 1.0000
## -0.0009677 0.00500574 Inf -0.193 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0370754 0.01258342 Inf -2.946 0.9960
## -0.0557379 0.01521700 Inf -3.663 0.6403
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0267278 0.02080797 Inf -1.284 1.0000
## -0.0000633 0.00421606 Inf -0.015 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0000429 0.00381311 Inf 0.011 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0035540 0.00495791 Inf -0.717 1.0000
## -0.0184698 0.00947538 Inf -1.949 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0013174 0.00776894 Inf -0.170 1.0000
## -0.0878871 0.02169726 Inf -4.051 0.2741
## -0.0509247 0.01436772 Inf -3.544 0.7538
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0461313 0.01444591 Inf -3.193 0.9615
## -0.0127623 0.00792607 Inf -1.610 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0002043 0.00424460 Inf -0.048 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0299794 0.01104674 Inf -2.714 0.9998
## -0.0739623 0.02217079 Inf -3.336 0.9044
## -0.0032197 0.00456847 Inf -0.705 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0005307 0.00431121 Inf -0.123 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.1533692 0.02980530 Inf -5.146 0.0034
## -0.0804452 0.02336739 Inf -3.443 0.8369
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0006548 0.00433674 Inf -0.151 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0888333 0.02183923 Inf -4.068 0.2613
## -0.0058936 0.00605870 Inf -0.973 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0044096 0.00514840 Inf -0.856 1.0000
## -0.0001004 0.00406398 Inf -0.025 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0026299 0.00475538 Inf -0.553 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## -0.0000482 0.00398828 Inf -0.012 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0515132 0.03178078 Inf -1.621 1.0000
## -0.0018619 0.00459004 Inf -0.406 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0064299 0.00560695 Inf -1.147 1.0000
## -0.0938728 0.02568861 Inf -3.654 0.6490
## -0.8952369 0.01891083 Inf -47.340 <.0001
## -0.6965777 0.04254209 Inf -16.374 <.0001
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0019894 0.00461728 Inf -0.431 1.0000
## -0.0001004 0.00406398 Inf -0.025 1.0000
## -0.0004757 0.00389254 Inf -0.122 1.0000
## -0.0001971 0.00445396 Inf -0.044 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0650918 0.03702804 Inf -1.758 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0005146 0.00430791 Inf -0.119 1.0000
## -0.0006332 0.00469290 Inf -0.135 1.0000
## -0.0026841 0.00446676 Inf -0.601 1.0000
## -0.1647445 0.03359322 Inf -4.904 0.0109
## -0.0076282 0.01110433 Inf -0.687 1.0000
## -0.0044684 0.00516158 Inf -0.866 1.0000
## -0.0213765 0.00853742 Inf -2.504 1.0000
## -0.9674536 0.00570263 Inf -169.651 <.0001
## -0.9672767 0.00703923 Inf -137.412 <.0001
## -0.0294469 0.01092878 Inf -2.694 0.9999
## -0.0249283 0.01118979 Inf -2.228 1.0000
## -0.0023968 0.00441273 Inf -0.543 1.0000
## -0.0001971 0.00445396 Inf -0.044 1.0000
## -0.3111416 0.08417630 Inf -3.696 0.6065
## -0.0212230 0.00906445 Inf -2.341 1.0000
## -0.0054718 0.00512088 Inf -1.069 1.0000
## 0.0000027 0.00381921 Inf 0.001 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.1833862 0.03261476 Inf -5.623 0.0003
## -0.0253567 0.01130160 Inf -2.244 1.0000
## -0.0016428 0.00427295 Inf -0.384 1.0000
## -0.0001254 0.00443759 Inf -0.028 1.0000
## 0.0002665 0.00694450 Inf 0.038 1.0000
## -0.0552931 0.01621801 Inf -3.409 0.8603
## -0.5721979 0.04033908 Inf -14.185 <.0001
## 0.0000429 0.00381311 Inf 0.011 1.0000
## -0.0007012 0.00457000 Inf -0.153 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0403702 0.02708164 Inf -1.491 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0002665 0.00414988 Inf 0.064 1.0000
## 0.0002665 0.00447347 Inf 0.060 1.0000
## 0.0002665 0.00393414 Inf 0.068 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## -0.0610790 0.03552918 Inf -1.719 1.0000
## -0.0016275 0.00454018 Inf -0.358 1.0000
## 0.0002665 0.00399766 Inf 0.067 1.0000
## 0.0002665 0.00377945 Inf 0.071 1.0000
## 0.0002665 0.00434887 Inf 0.061 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0373419 0.01270581 Inf -2.939 0.9963
## -0.0560044 0.01531852 Inf -3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0373419 0.01381126 Inf -2.704 0.9999
## -0.0560044 0.01624717 Inf -3.447 0.8337
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0269943 0.02157257 Inf -1.251 1.0000
## -0.0003298 0.00708247 Inf -0.047 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0002236 0.00685025 Inf -0.033 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0038205 0.00754786 Inf -0.506 1.0000
## -0.0187363 0.01105363 Inf -1.695 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0015839 0.00963035 Inf -0.164 1.0000
## -0.0881536 0.02243185 Inf -3.930 0.3752
## -0.0511912 0.01545457 Inf -3.312 0.9164
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0463978 0.01552725 Inf -2.988 0.9936
## -0.0130288 0.00975802 Inf -1.335 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0004708 0.00709950 Inf -0.066 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0302459 0.01242724 Inf -2.434 1.0000
## -0.0742288 0.02289017 Inf -3.243 0.9458
## -0.0034862 0.00729794 Inf -0.478 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0007972 0.00713955 Inf -0.112 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1536357 0.03034421 Inf -5.063 0.0052
## -0.0807117 0.02405102 Inf -3.356 0.8935
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0009213 0.00715500 Inf -0.129 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0890998 0.02256920 Inf -3.948 0.3591
## -0.0061602 0.00831259 Inf -0.741 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0186625 0.01927667 Inf -0.968 1.0000
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0373419 0.01263908 Inf 2.954 0.9956
## 0.0373419 0.01274899 Inf 2.929 0.9967
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0103476 0.02395479 Inf 0.432 1.0000
## 0.0370121 0.01265987 Inf 2.924 0.9969
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0371183 0.01253180 Inf 2.962 0.9952
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0335214 0.01291501 Inf 2.596 1.0000
## 0.0186056 0.01519987 Inf 1.224 1.0000
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0357580 0.01423904 Inf 2.511 1.0000
## -0.0508117 0.02470807 Inf -2.056 1.0000
## -0.0138493 0.01861600 Inf -0.744 1.0000
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.0090559 0.01867926 Inf -0.485 1.0000
## 0.0243131 0.01429693 Inf 1.701 1.0000
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0373419 0.01381126 Inf 2.704 0.9999
## 0.0368711 0.01266894 Inf 2.910 0.9973
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0070960 0.01620984 Inf 0.438 1.0000
## -0.0368869 0.02512660 Inf -1.468 1.0000
## 0.0338557 0.01277159 Inf 2.651 0.9999
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0373419 0.01381126 Inf 2.704 0.9999
## 0.0365447 0.01269035 Inf 2.880 0.9982
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.1162938 0.03206611 Inf -3.627 0.6763
## -0.0433698 0.02618759 Inf -1.656 1.0000
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0373419 0.01381126 Inf 2.704 0.9999
## 0.0364207 0.01269864 Inf 2.868 0.9984
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.0517579 0.02483276 Inf -2.084 1.0000
## 0.0311818 0.01336970 Inf 2.332 1.0000
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0373419 0.01381126 Inf 2.704 0.9999
## 0.0326658 0.01298681 Inf 2.515 1.0000
## 0.0369751 0.01260992 Inf 2.932 0.9966
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0344455 0.01284143 Inf 2.682 0.9999
## 0.0373419 0.01274899 Inf 2.929 0.9967
## 0.0370272 0.01258590 Inf 2.942 0.9961
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.0144378 0.03391357 Inf -0.426 1.0000
## 0.0352135 0.01278352 Inf 2.755 0.9997
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0306455 0.01316966 Inf 2.327 1.0000
## -0.0567974 0.02827728 Inf -2.009 1.0000
## -0.8581615 0.02247291 Inf -38.186 <.0001
## -0.6595023 0.04422545 Inf -14.912 <.0001
## 0.0373419 0.01381126 Inf 2.704 0.9999
## 0.0350860 0.01279292 Inf 2.743 0.9997
## 0.0369751 0.01260992 Inf 2.932 0.9966
## 0.0365997 0.01255447 Inf 2.915 0.9972
## 0.0368783 0.01274064 Inf 2.895 0.9978
## 0.0373419 0.01263908 Inf 2.954 0.9956
## 0.0373419 0.01274899 Inf 2.929 0.9967
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.0280164 0.03887120 Inf -0.721 1.0000
## 0.0373419 0.01263908 Inf 2.954 0.9956
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0365608 0.01268928 Inf 2.881 0.9981
## 0.0364422 0.01282471 Inf 2.842 0.9989
## 0.0343913 0.01273721 Inf 2.700 0.9999
## -0.1276691 0.03561550 Inf -3.585 0.7168
## 0.0294472 0.01628567 Inf 1.808 1.0000
## 0.0326070 0.01299187 Inf 2.510 1.0000
## 0.0156989 0.01462847 Inf 1.073 1.0000
## -0.9303782 0.01333836 Inf -69.752 <.0001
## -0.9302013 0.01396260 Inf -66.621 <.0001
## 0.0076285 0.01613032 Inf 0.473 1.0000
## 0.0121471 0.01631410 Inf 0.745 1.0000
## 0.0346786 0.01271925 Inf 2.726 0.9998
## 0.0368783 0.01274064 Inf 2.895 0.9978
## -0.2740662 0.08501230 Inf -3.224 0.9523
## 0.0158524 0.01494244 Inf 1.061 1.0000
## 0.0316036 0.01297287 Inf 2.436 1.0000
## 0.0370781 0.01253352 Inf 2.958 0.9954
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.1463108 0.03469627 Inf -4.217 0.1664
## 0.0117187 0.01639041 Inf 0.715 1.0000
## 0.0354326 0.01267382 Inf 2.796 0.9994
## 0.0369500 0.01273516 Inf 2.901 0.9976
## 0.0373419 0.01381126 Inf 2.704 0.9999
## -0.0182177 0.02007647 Inf -0.907 1.0000
## -0.5351225 0.04209322 Inf -12.713 <.0001
## 0.0371183 0.01253180 Inf 2.962 0.9952
## 0.0363742 0.01278003 Inf 2.846 0.9988
## 0.0373419 0.01263908 Inf 2.954 0.9956
## 0.0373419 0.01274899 Inf 2.929 0.9967
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.0032948 0.02956005 Inf -0.111 1.0000
## 0.0373419 0.01263908 Inf 2.954 0.9956
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0373419 0.01263908 Inf 2.954 0.9956
## 0.0373419 0.01274899 Inf 2.929 0.9967
## 0.0373419 0.01256990 Inf 2.971 0.9947
## 0.0373419 0.01270581 Inf 2.939 0.9963
## -0.0240036 0.03744690 Inf -0.641 1.0000
## 0.0354479 0.01276644 Inf 2.777 0.9995
## 0.0373419 0.01258993 Inf 2.966 0.9950
## 0.0373419 0.01252235 Inf 2.982 0.9940
## 0.0373419 0.01270581 Inf 2.939 0.9963
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0560044 0.01526322 Inf 3.669 0.6339
## 0.0560044 0.01535436 Inf 3.647 0.6558
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0290101 0.02542997 Inf 1.141 1.0000
## 0.0556746 0.01528024 Inf 3.644 0.6596
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0557808 0.01517436 Inf 3.676 0.6271
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0521839 0.01549028 Inf 3.369 0.8860
## 0.0372681 0.01743485 Inf 2.138 1.0000
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0544205 0.01661146 Inf 3.276 0.9328
## -0.0321492 0.02613595 Inf -1.230 1.0000
## 0.0048132 0.02047545 Inf 0.235 1.0000
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0096066 0.02053356 Inf 0.468 1.0000
## 0.0429756 0.01665571 Inf 2.580 1.0000
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0560044 0.01624717 Inf 3.447 0.8337
## 0.0555336 0.01528767 Inf 3.633 0.6705
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0257585 0.01831888 Inf 1.406 1.0000
## -0.0182244 0.02653231 Inf -0.687 1.0000
## 0.0525182 0.01537109 Inf 3.417 0.8553
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0560044 0.01624717 Inf 3.447 0.8337
## 0.0552072 0.01530521 Inf 3.607 0.6954
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## -0.0976313 0.03317936 Inf -2.943 0.9961
## -0.0247073 0.02753901 Inf -0.897 1.0000
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0560044 0.01624717 Inf 3.447 0.8337
## 0.0550831 0.01531201 Inf 3.597 0.7047
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## -0.0330954 0.02625384 Inf -1.261 1.0000
## 0.0498443 0.01587014 Inf 3.141 0.9743
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0560044 0.01624717 Inf 3.447 0.8337
## 0.0513283 0.01554973 Inf 3.301 0.9219
## 0.0556375 0.01523885 Inf 3.651 0.6522
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0531080 0.01542950 Inf 3.442 0.8374
## 0.0560044 0.01535436 Inf 3.647 0.6558
## 0.0556897 0.01521902 Inf 3.659 0.6440
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0042247 0.03496879 Inf 0.121 1.0000
## 0.0538760 0.01538177 Inf 3.503 0.7899
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0493080 0.01570172 Inf 3.140 0.9744
## -0.0381349 0.02953302 Inf -1.291 1.0000
## -0.8394990 0.02406930 Inf -34.878 <.0001
## -0.6408398 0.04505432 Inf -14.224 <.0001
## 0.0560044 0.01624717 Inf 3.447 0.8337
## 0.0537485 0.01538952 Inf 3.493 0.7982
## 0.0556375 0.01523885 Inf 3.651 0.6522
## 0.0552622 0.01519278 Inf 3.637 0.6658
## 0.0555408 0.01534714 Inf 3.619 0.6839
## 0.0560044 0.01526322 Inf 3.669 0.6339
## 0.0560044 0.01535436 Inf 3.647 0.6558
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## -0.0093539 0.03979457 Inf -0.235 1.0000
## 0.0560044 0.01526322 Inf 3.669 0.6339
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0552233 0.01530434 Inf 3.608 0.6942
## 0.0551047 0.01541674 Inf 3.574 0.7265
## 0.0530537 0.01534284 Inf 3.458 0.8256
## -0.1090066 0.03662125 Inf -2.977 0.9944
## 0.0481097 0.01839316 Inf 2.616 1.0000
## 0.0512695 0.01555392 Inf 3.296 0.9240
## 0.0343613 0.01693806 Inf 2.029 1.0000
## -0.9117157 0.01586710 Inf -57.459 <.0001
## -0.9115388 0.01639542 Inf -55.597 <.0001
## 0.0262910 0.01824868 Inf 1.441 1.0000
## 0.0308096 0.01841246 Inf 1.673 1.0000
## 0.0533411 0.01532810 Inf 3.480 0.8084
## 0.0555408 0.01534714 Inf 3.619 0.6839
## -0.2554037 0.08544046 Inf -2.989 0.9936
## 0.0345148 0.01720999 Inf 2.006 1.0000
## 0.0502660 0.01553752 Inf 3.235 0.9485
## 0.0557406 0.01517576 Inf 3.673 0.6301
## 0.0560044 0.01531852 Inf 3.656 0.6472
## -0.1276483 0.03572837 Inf -3.573 0.7279
## 0.0303812 0.01847999 Inf 1.644 1.0000
## 0.0540951 0.01529085 Inf 3.538 0.7597
## 0.0556125 0.01534263 Inf 3.625 0.6783
## 0.0560044 0.01624717 Inf 3.447 0.8337
## 0.0004448 0.02181135 Inf 0.020 1.0000
## -0.5164600 0.04295948 Inf -12.022 <.0001
## 0.0557808 0.01517436 Inf 3.676 0.6271
## 0.0550367 0.01537956 Inf 3.579 0.7225
## 0.0560044 0.01526322 Inf 3.669 0.6339
## 0.0560044 0.01535436 Inf 3.647 0.6558
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0153677 0.03076592 Inf 0.500 1.0000
## 0.0560044 0.01526322 Inf 3.669 0.6339
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0560044 0.01526322 Inf 3.669 0.6339
## 0.0560044 0.01535436 Inf 3.647 0.6558
## 0.0560044 0.01520598 Inf 3.683 0.6200
## 0.0560044 0.01531852 Inf 3.656 0.6472
## -0.0053411 0.03840469 Inf -0.139 1.0000
## 0.0541104 0.01536772 Inf 3.521 0.7743
## 0.0560044 0.01522254 Inf 3.679 0.6240
## 0.0560044 0.01516669 Inf 3.693 0.6103
## 0.0560044 0.01531852 Inf 3.656 0.6472
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0269943 0.02077099 Inf -1.300 1.0000
## -0.0003298 0.00402734 Inf -0.082 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## -0.0002236 0.00360333 Inf -0.062 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0038205 0.00479878 Inf -0.796 1.0000
## -0.0187363 0.00939366 Inf -1.995 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0015839 0.00766823 Inf -0.207 1.0000
## -0.0881536 0.02166209 Inf -4.069 0.2600
## -0.0511912 0.01431440 Inf -3.576 0.7247
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01439284 Inf -3.224 0.9524
## -0.0130288 0.00782796 Inf -1.664 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0004708 0.00405722 Inf -0.116 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0269943 0.02084158 Inf -1.295 1.0000
## -0.0003298 0.00437684 Inf -0.075 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## -0.0002236 0.00399015 Inf -0.056 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0038205 0.00509564 Inf -0.750 1.0000
## -0.0187363 0.00954873 Inf -1.962 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0015839 0.00785742 Inf -0.202 1.0000
## -0.0881536 0.02172978 Inf -4.057 0.2694
## -0.0511912 0.01441663 Inf -3.551 0.7480
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0463978 0.01449452 Inf -3.201 0.9594
## -0.0130288 0.00801338 Inf -1.626 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0004708 0.00440435 Inf -0.107 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0302459 0.01110998 Inf -2.722 0.9998
## -0.0742288 0.02220260 Inf -3.343 0.9005
## -0.0034862 0.00471755 Inf -0.739 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0007972 0.00446862 Inf -0.178 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1536357 0.02982895 Inf -5.151 0.0034
## -0.0807117 0.02339758 Inf -3.450 0.8318
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0009213 0.00449326 Inf -0.205 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0890998 0.02187154 Inf -4.074 0.2568
## -0.0061602 0.00617208 Inf -0.998 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0046761 0.00528123 Inf -0.885 1.0000
## -0.0003669 0.00423054 Inf -0.087 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0028964 0.00489873 Inf -0.591 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## -0.0003147 0.00415788 Inf -0.076 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0517797 0.03180292 Inf -1.628 1.0000
## -0.0021284 0.00473831 Inf -0.449 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0066964 0.00572931 Inf -1.169 1.0000
## -0.0941393 0.02571609 Inf -3.661 0.6425
## -0.8955034 0.01894589 Inf -47.266 <.0001
## -0.6968442 0.04255786 Inf -16.374 <.0001
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0022559 0.00476472 Inf -0.473 1.0000
## -0.0003669 0.00423054 Inf -0.087 1.0000
## -0.0007422 0.00406618 Inf -0.183 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0653583 0.03704708 Inf -1.764 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0007811 0.00446543 Inf -0.175 1.0000
## -0.0008997 0.00483791 Inf -0.186 1.0000
## -0.0029507 0.00461908 Inf -0.639 1.0000
## -0.1650110 0.03361420 Inf -4.909 0.0107
## -0.0078947 0.01116665 Inf -0.707 1.0000
## -0.0047349 0.00529409 Inf -0.894 1.0000
## -0.0216431 0.00861885 Inf -2.511 1.0000
## -0.9677201 0.00581975 Inf -166.282 <.0001
## -0.9675432 0.00713443 Inf -135.616 <.0001
## -0.0297134 0.01099268 Inf -2.703 0.9999
## -0.0251948 0.01125212 Inf -2.239 1.0000
## -0.0026633 0.00456682 Inf -0.583 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## -0.3114081 0.08418458 Inf -3.699 0.6036
## -0.0214896 0.00914118 Inf -2.351 1.0000
## -0.0057384 0.00525450 Inf -1.092 1.0000
## -0.0002638 0.00399598 Inf -0.066 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1836527 0.03263634 Inf -5.627 0.0003
## -0.0256232 0.01136333 Inf -2.255 1.0000
## -0.0019093 0.00443183 Inf -0.431 1.0000
## -0.0003919 0.00459062 Inf -0.085 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0555596 0.01626138 Inf -3.417 0.8554
## -0.5724644 0.04035591 Inf -14.185 <.0001
## -0.0002236 0.00399015 Inf -0.056 1.0000
## -0.0009677 0.00471880 Inf -0.205 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0406367 0.02710757 Inf -1.499 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0269943 0.02090841 Inf -1.291 1.0000
## -0.0003298 0.00468478 Inf -0.070 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0002236 0.00432570 Inf -0.052 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0038205 0.00536246 Inf -0.712 1.0000
## -0.0187363 0.00969374 Inf -1.933 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0015839 0.00803302 Inf -0.197 1.0000
## -0.0881536 0.02179389 Inf -4.045 0.2785
## -0.0511912 0.01451309 Inf -3.527 0.7689
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0463978 0.01459046 Inf -3.180 0.9651
## -0.0130288 0.00818564 Inf -1.592 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0004708 0.00471049 Inf -0.100 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0302459 0.01123486 Inf -2.692 0.9999
## -0.0742288 0.02226535 Inf -3.334 0.9056
## -0.0034862 0.00500457 Inf -0.697 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0007972 0.00477064 Inf -0.167 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1536357 0.02987569 Inf -5.143 0.0035
## -0.0807117 0.02345714 Inf -3.441 0.8383
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0009213 0.00479373 Inf -0.192 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0890998 0.02193524 Inf -4.062 0.2655
## -0.0061602 0.00639413 Inf -0.963 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0046761 0.00553912 Inf -0.844 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0028964 0.00517571 Inf -0.560 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## -0.0003147 0.00448089 Inf -0.070 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0517797 0.03184676 Inf -1.626 1.0000
## -0.0021284 0.00502415 Inf -0.424 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0066964 0.00596786 Inf -1.122 1.0000
## -0.0941393 0.02577029 Inf -3.653 0.6502
## -0.8955034 0.01901939 Inf -47.084 <.0001
## -0.6968442 0.04259063 Inf -16.361 <.0001
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0022559 0.00504906 Inf -0.447 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## -0.0007422 0.00439594 Inf -0.169 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0653583 0.03708472 Inf -1.762 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0007811 0.00476765 Inf -0.164 1.0000
## -0.0008997 0.00511818 Inf -0.176 1.0000
## -0.0029507 0.00491185 Inf -0.601 1.0000
## -0.1650110 0.03365568 Inf -4.903 0.0110
## -0.0078947 0.01129091 Inf -0.699 1.0000
## -0.0047349 0.00555138 Inf -0.853 1.0000
## -0.0216431 0.00877924 Inf -2.465 1.0000
## -0.9677201 0.00605474 Inf -159.829 <.0001
## -0.9675432 0.00732738 Inf -132.045 <.0001
## -0.0297134 0.01111888 Inf -2.672 0.9999
## -0.0251948 0.01137544 Inf -2.215 1.0000
## -0.0026633 0.00486274 Inf -0.548 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## -0.3114081 0.08420115 Inf -3.698 0.6044
## -0.0214896 0.00929256 Inf -2.313 1.0000
## -0.0057384 0.00551363 Inf -1.041 1.0000
## -0.0002638 0.00433108 Inf -0.061 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1836527 0.03267906 Inf -5.620 0.0003
## -0.0256232 0.01148545 Inf -2.231 1.0000
## -0.0019093 0.00473620 Inf -0.403 1.0000
## -0.0003919 0.00488510 Inf -0.080 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0555596 0.01634696 Inf -3.399 0.8673
## -0.5724644 0.04039047 Inf -14.173 <.0001
## -0.0002236 0.00432570 Inf -0.052 1.0000
## -0.0009677 0.00500574 Inf -0.193 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0269943 0.02079969 Inf -1.298 1.0000
## -0.0003298 0.00417286 Inf -0.079 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## -0.0002236 0.00376527 Inf -0.059 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0038205 0.00492154 Inf -0.776 1.0000
## -0.0187363 0.00945696 Inf -1.981 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0015839 0.00774565 Inf -0.204 1.0000
## -0.0881536 0.02168962 Inf -4.064 0.2638
## -0.0511912 0.01435602 Inf -3.566 0.7343
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0463978 0.01443423 Inf -3.214 0.9553
## -0.0130288 0.00790382 Inf -1.648 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0004708 0.00420170 Inf -0.112 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0302459 0.01103121 Inf -2.742 0.9997
## -0.0742288 0.02216329 Inf -3.349 0.8973
## -0.0034862 0.00452894 Inf -0.770 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0007972 0.00426902 Inf -0.187 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1536357 0.02979971 Inf -5.156 0.0033
## -0.0807117 0.02336029 Inf -3.455 0.8277
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0009213 0.00429481 Inf -0.215 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0890998 0.02183163 Inf -4.081 0.2514
## -0.0061602 0.00602914 Inf -1.022 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0269943 0.02088211 Inf -1.293 1.0000
## -0.0003298 0.00456595 Inf -0.072 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0002236 0.00419672 Inf -0.053 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0266645 0.02085432 Inf 1.279 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0267707 0.02077677 Inf 1.288 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0231738 0.02101143 Inf 1.103 1.0000
## 0.0082581 0.02249222 Inf 0.367 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0254105 0.02184948 Inf 1.163 1.0000
## -0.0611593 0.02975973 Inf -2.055 1.0000
## -0.0241969 0.02493254 Inf -0.970 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0194035 0.02497941 Inf -0.777 1.0000
## 0.0139655 0.02189075 Inf 0.638 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0269943 0.02157257 Inf 1.251 1.0000
## 0.0265235 0.02085987 Inf 1.272 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0032516 0.02318882 Inf -0.140 1.0000
## -0.0472345 0.03010785 Inf -1.569 1.0000
## 0.0235081 0.02092346 Inf 1.124 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0269943 0.02157257 Inf 1.251 1.0000
## 0.0261972 0.02087300 Inf 1.255 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.1266414 0.03610204 Inf -3.508 0.7855
## -0.0537174 0.03099896 Inf -1.733 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0269943 0.02157257 Inf 1.251 1.0000
## 0.0260731 0.02087809 Inf 1.249 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0621055 0.02986334 Inf -2.080 1.0000
## 0.0208342 0.02129471 Inf 0.978 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0269943 0.02157257 Inf 1.251 1.0000
## 0.0223182 0.02105593 Inf 1.060 1.0000
## 0.0266275 0.02082404 Inf 1.279 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0240979 0.02096596 Inf 1.149 1.0000
## 0.0269943 0.02090841 Inf 1.291 1.0000
## 0.0266796 0.02080949 Inf 1.282 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0247854 0.03775193 Inf -0.657 1.0000
## 0.0248660 0.02093027 Inf 1.188 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0202979 0.02116986 Inf 0.959 1.0000
## -0.0671450 0.03278354 Inf -2.048 1.0000
## -0.8685091 0.02790587 Inf -31.123 <.0001
## -0.6698499 0.04722130 Inf -14.185 <.0001
## 0.0269943 0.02157257 Inf 1.251 1.0000
## 0.0247384 0.02093606 Inf 1.182 1.0000
## 0.0266275 0.02082404 Inf 1.279 1.0000
## 0.0262521 0.02079065 Inf 1.263 1.0000
## 0.0265307 0.02090349 Inf 1.269 1.0000
## 0.0269943 0.02084158 Inf 1.295 1.0000
## 0.0269943 0.02090841 Inf 1.291 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0383640 0.04226215 Inf -0.908 1.0000
## 0.0269943 0.02084158 Inf 1.295 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0262132 0.02087235 Inf 1.256 1.0000
## 0.0260946 0.02095500 Inf 1.245 1.0000
## 0.0240437 0.02090231 Inf 1.150 1.0000
## -0.1380167 0.03928831 Inf -3.513 0.7812
## 0.0190996 0.02323709 Inf 0.822 1.0000
## 0.0222594 0.02105908 Inf 1.057 1.0000
## 0.0053513 0.02211072 Inf 0.242 1.0000
## -0.9407258 0.02126024 Inf -44.248 <.0001
## -0.9405488 0.02165729 Inf -43.429 <.0001
## -0.0027191 0.02313322 Inf -0.118 1.0000
## 0.0017995 0.02326098 Inf 0.077 1.0000
## 0.0243311 0.02089127 Inf 1.165 1.0000
## 0.0265307 0.02090349 Inf 1.269 1.0000
## -0.2844138 0.08661362 Inf -3.284 0.9296
## 0.0055048 0.02231965 Inf 0.247 1.0000
## 0.0212560 0.02104769 Inf 1.010 1.0000
## 0.0267305 0.02077783 Inf 1.286 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.1566584 0.03845660 Inf -4.074 0.2569
## 0.0013711 0.02331464 Inf 0.059 1.0000
## 0.0250850 0.02086337 Inf 1.202 1.0000
## 0.0266025 0.02090013 Inf 1.273 1.0000
## 0.0269943 0.02157257 Inf 1.251 1.0000
## -0.0285652 0.02604144 Inf -1.097 1.0000
## -0.5454701 0.04523355 Inf -12.059 <.0001
## 0.0267707 0.02077677 Inf 1.288 1.0000
## 0.0260266 0.02092771 Inf 1.244 1.0000
## 0.0269943 0.02084158 Inf 1.295 1.0000
## 0.0269943 0.02090841 Inf 1.291 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0136423 0.03389431 Inf -0.402 1.0000
## 0.0269943 0.02084158 Inf 1.295 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0269943 0.02084158 Inf 1.295 1.0000
## 0.0269943 0.02090841 Inf 1.291 1.0000
## 0.0269943 0.02079969 Inf 1.298 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## -0.0343512 0.04095583 Inf -0.839 1.0000
## 0.0251004 0.02091976 Inf 1.200 1.0000
## 0.0269943 0.02081180 Inf 1.297 1.0000
## 0.0269943 0.02077099 Inf 1.300 1.0000
## 0.0269943 0.02088211 Inf 1.293 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0001062 0.00405894 Inf 0.026 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0034907 0.00514931 Inf -0.678 1.0000
## -0.0184065 0.00957678 Inf -1.922 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0012541 0.00789248 Inf -0.159 1.0000
## -0.0878238 0.02174164 Inf -4.039 0.2827
## -0.0508614 0.01443469 Inf -3.524 0.7721
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0460680 0.01451253 Inf -3.174 0.9666
## -0.0126990 0.00804707 Inf -1.578 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0001410 0.00446674 Inf -0.032 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0299161 0.01113378 Inf -2.687 0.9999
## -0.0738990 0.02221423 Inf -3.327 0.9093
## -0.0031564 0.00477550 Inf -0.661 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0004674 0.00453008 Inf -0.103 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.1533059 0.02983763 Inf -5.138 0.0036
## -0.0803819 0.02340861 Inf -3.434 0.8433
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0005914 0.00455437 Inf -0.130 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0887700 0.02188332 Inf -4.057 0.2696
## -0.0058303 0.00621626 Inf -0.938 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0043463 0.00533294 Inf -0.815 1.0000
## -0.0000370 0.00429547 Inf -0.009 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0025666 0.00495462 Inf -0.518 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0000151 0.00422393 Inf 0.004 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0514499 0.03181111 Inf -1.617 1.0000
## -0.0017986 0.00479617 Inf -0.375 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0063666 0.00577683 Inf -1.102 1.0000
## -0.0938095 0.02572611 Inf -3.646 0.6568
## -0.8951736 0.01896227 Inf -47.208 <.0001
## -0.6965144 0.04256494 Inf -16.364 <.0001
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0019261 0.00482224 Inf -0.399 1.0000
## -0.0000370 0.00429547 Inf -0.009 1.0000
## -0.0004124 0.00413364 Inf -0.100 1.0000
## -0.0001338 0.00466614 Inf -0.029 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0650285 0.03705407 Inf -1.755 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0004513 0.00452694 Inf -0.100 1.0000
## -0.0005699 0.00489472 Inf -0.116 1.0000
## -0.0026208 0.00467831 Inf -0.560 1.0000
## -0.1646812 0.03362191 Inf -4.898 0.0112
## -0.0075649 0.01119106 Inf -0.676 1.0000
## -0.0044051 0.00534567 Inf -0.824 1.0000
## -0.0213132 0.00864981 Inf -2.464 1.0000
## -0.9673903 0.00587049 Inf -164.789 <.0001
## -0.9672134 0.00717590 Inf -134.786 <.0001
## -0.0293836 0.01101675 Inf -2.667 0.9999
## -0.0248650 0.01127575 Inf -2.205 1.0000
## -0.0023335 0.00462676 Inf -0.504 1.0000
## -0.0001338 0.00466614 Inf -0.029 1.0000
## -0.3110783 0.08418778 Inf -3.695 0.6078
## -0.0211597 0.00917038 Inf -2.307 1.0000
## -0.0054085 0.00530636 Inf -1.019 1.0000
## 0.0000660 0.00406467 Inf 0.016 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.1833229 0.03264432 Inf -5.616 0.0003
## -0.0252934 0.01138671 Inf -2.221 1.0000
## -0.0015795 0.00449366 Inf -0.352 1.0000
## -0.0000621 0.00465052 Inf -0.013 1.0000
## 0.0003298 0.00708247 Inf 0.047 1.0000
## -0.0552298 0.01627736 Inf -3.393 0.8710
## -0.5721346 0.04036312 Inf -14.175 <.0001
## 0.0001062 0.00405894 Inf 0.026 1.0000
## -0.0006379 0.00477702 Inf -0.134 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0403069 0.02711724 Inf -1.486 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## 0.0003298 0.00437684 Inf 0.075 1.0000
## 0.0003298 0.00468478 Inf 0.070 1.0000
## 0.0003298 0.00417286 Inf 0.079 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0610157 0.03555631 Inf -1.716 1.0000
## -0.0015642 0.00474848 Inf -0.329 1.0000
## 0.0003298 0.00423279 Inf 0.078 1.0000
## 0.0003298 0.00402734 Inf 0.082 1.0000
## 0.0003298 0.00456595 Inf 0.072 1.0000
## -0.0002236 0.00383159 Inf -0.058 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0038205 0.00497246 Inf -0.768 1.0000
## -0.0187363 0.00948356 Inf -1.976 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0015839 0.00777810 Inf -0.204 1.0000
## -0.0881536 0.02170123 Inf -4.062 0.2654
## -0.0511912 0.01437355 Inf -3.561 0.7383
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0463978 0.01445167 Inf -3.211 0.9565
## -0.0130288 0.00793562 Inf -1.642 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0004708 0.00426123 Inf -0.110 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0302459 0.01105403 Inf -2.736 0.9998
## -0.0742288 0.02217465 Inf -3.347 0.8982
## -0.0034862 0.00458422 Inf -0.760 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0007972 0.00432763 Inf -0.184 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1536357 0.02980816 Inf -5.154 0.0033
## -0.0807117 0.02337107 Inf -3.453 0.8289
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0009213 0.00435307 Inf -0.212 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0890998 0.02184317 Inf -4.079 0.2530
## -0.0061602 0.00607078 Inf -1.015 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0046761 0.00516248 Inf -0.906 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0028964 0.00477047 Inf -0.607 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0003147 0.00400597 Inf -0.079 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0517797 0.03178342 Inf -1.629 1.0000
## -0.0021284 0.00460559 Inf -0.462 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0035969 0.00482507 Inf -0.745 1.0000
## -0.0185127 0.00940664 Inf -1.968 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0013603 0.00768482 Inf -0.177 1.0000
## -0.0879300 0.02166739 Inf -4.058 0.2684
## -0.0509676 0.01432255 Inf -3.559 0.7410
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0461742 0.01440098 Inf -3.206 0.9578
## -0.0128052 0.00784373 Inf -1.633 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0002236 0.00685025 Inf 0.033 1.0000
## -0.0002472 0.00408858 Inf -0.060 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0300223 0.01098788 Inf -2.732 0.9998
## -0.0740052 0.02214156 Inf -3.342 0.9010
## -0.0032626 0.00442393 Inf -0.737 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0002236 0.00685025 Inf 0.033 1.0000
## -0.0005736 0.00415770 Inf -0.138 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.1534121 0.02978356 Inf -5.151 0.0033
## -0.0804881 0.02333966 Inf -3.449 0.8326
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0002236 0.00685025 Inf 0.033 1.0000
## -0.0006977 0.00418416 Inf -0.167 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0888762 0.02180955 Inf -4.075 0.2558
## -0.0059366 0.00595051 Inf -0.998 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0002236 0.00685025 Inf 0.033 1.0000
## -0.0044525 0.00502061 Inf -0.887 1.0000
## -0.0001433 0.00390074 Inf -0.037 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0026728 0.00461669 Inf -0.579 1.0000
## 0.0002236 0.00432570 Inf 0.052 1.0000
## -0.0000911 0.00382181 Inf -0.024 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0515561 0.03176038 Inf -1.623 1.0000
## -0.0019048 0.00444618 Inf -0.428 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0064728 0.00548987 Inf -1.179 1.0000
## -0.0939157 0.02566339 Inf -3.660 0.6437
## -0.8952798 0.01887619 Inf -47.429 <.0001
## -0.6966206 0.04252673 Inf -16.381 <.0001
## 0.0002236 0.00685025 Inf 0.033 1.0000
## -0.0020323 0.00447430 Inf -0.454 1.0000
## -0.0001433 0.00390074 Inf -0.037 1.0000
## -0.0005186 0.00372180 Inf -0.139 1.0000
## -0.0002400 0.00430553 Inf -0.056 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00432570 Inf 0.052 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0651347 0.03701054 Inf -1.760 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0005575 0.00415428 Inf -0.134 1.0000
## -0.0006762 0.00455228 Inf -0.149 1.0000
## -0.0027271 0.00431882 Inf -0.631 1.0000
## -0.1647874 0.03357393 Inf -4.908 0.0107
## -0.0076711 0.01104568 Inf -0.694 1.0000
## -0.0045113 0.00503413 Inf -0.896 1.0000
## -0.0214195 0.00846108 Inf -2.532 1.0000
## -0.9674965 0.00558701 Inf -173.169 <.0001
## -0.9673196 0.00694589 Inf -139.265 <.0001
## -0.0294898 0.01086927 Inf -2.713 0.9998
## -0.0249712 0.01113167 Inf -2.243 1.0000
## -0.0024397 0.00426291 Inf -0.572 1.0000
## -0.0002400 0.00430553 Inf -0.056 1.0000
## -0.3111845 0.08416859 Inf -3.697 0.6056
## -0.0212660 0.00899259 Inf -2.365 1.0000
## -0.0055148 0.00499240 Inf -1.105 1.0000
## -0.0000402 0.00364502 Inf -0.011 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.1834291 0.03259488 Inf -5.628 0.0003
## -0.0253996 0.01124406 Inf -2.259 1.0000
## -0.0016857 0.00411804 Inf -0.409 1.0000
## -0.0001683 0.00428860 Inf -0.039 1.0000
## 0.0002236 0.00685025 Inf 0.033 1.0000
## -0.0553360 0.01617801 Inf -3.420 0.8527
## -0.5722408 0.04032291 Inf -14.191 <.0001
## 0.0000000 0.00363863 Inf 0.000 1.0000
## -0.0007441 0.00442548 Inf -0.168 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00432570 Inf 0.052 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0404131 0.02705769 Inf -1.494 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00432570 Inf 0.052 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0611219 0.03551094 Inf -1.721 1.0000
## -0.0016704 0.00439469 Inf -0.380 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0038205 0.00525897 Inf -0.726 1.0000
## -0.0187363 0.00963687 Inf -1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0149158 0.00991701 Inf -1.504 1.0000
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0022366 0.00831155 Inf 0.269 1.0000
## -0.0843331 0.02188877 Inf -3.853 0.4481
## -0.0473707 0.01465729 Inf -3.232 0.9496
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0425773 0.01473445 Inf -2.890 0.9979
## -0.0092083 0.00845181 Inf -1.090 1.0000
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0038205 0.00754786 Inf 0.506 1.0000
## 0.0033497 0.00517253 Inf 0.648 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0264254 0.01142456 Inf -2.313 1.0000
## -0.0704083 0.02235851 Inf -3.149 0.9725
## 0.0003343 0.00543830 Inf 0.061 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0038205 0.00754786 Inf 0.506 1.0000
## 0.0030233 0.00522697 Inf 0.578 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.1498152 0.02994538 Inf -5.003 0.0069
## -0.0768912 0.02354544 Inf -3.266 0.9371
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0038205 0.00754786 Inf 0.506 1.0000
## 0.0028992 0.00524791 Inf 0.552 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0852793 0.02202949 Inf -3.871 0.4303
## -0.0023396 0.00673673 Inf -0.347 1.0000
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0038205 0.00754786 Inf 0.506 1.0000
## -0.0008556 0.00593273 Inf -0.144 1.0000
## 0.0034536 0.00502550 Inf 0.687 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0009241 0.00559682 Inf 0.165 1.0000
## 0.0038205 0.00536246 Inf 0.712 1.0000
## 0.0035058 0.00496455 Inf 0.706 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0479592 0.03191271 Inf -1.503 1.0000
## 0.0016921 0.00545782 Inf 0.310 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0028759 0.00633310 Inf -0.454 1.0000
## -0.0903188 0.02585052 Inf -3.494 0.7971
## -0.8916829 0.01915867 Inf -46.542 <.0001
## -0.6930237 0.04265060 Inf -16.249 <.0001
## 0.0038205 0.00754786 Inf 0.506 1.0000
## 0.0015646 0.00548062 Inf 0.285 1.0000
## 0.0034536 0.00502550 Inf 0.687 1.0000
## 0.0030783 0.00488745 Inf 0.630 1.0000
## 0.0033569 0.00534569 Inf 0.628 1.0000
## 0.0038205 0.00509564 Inf 0.750 1.0000
## 0.0038205 0.00536246 Inf 0.712 1.0000
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0615378 0.03714092 Inf -1.657 1.0000
## 0.0038205 0.00509564 Inf 0.750 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0030394 0.00522427 Inf 0.582 1.0000
## 0.0029208 0.00554588 Inf 0.527 1.0000
## 0.0008698 0.00535370 Inf 0.162 1.0000
## -0.1611905 0.03371774 Inf -4.781 0.0191
## -0.0040742 0.01148757 Inf -0.355 1.0000
## -0.0009144 0.00594412 Inf -0.154 1.0000
## -0.0178226 0.00902391 Inf -1.975 1.0000
## -0.9638996 0.00645518 Inf -149.322 <.0001
## -0.9637227 0.00766171 Inf -125.784 <.0001
## -0.0258929 0.01131067 Inf -2.289 1.0000
## -0.0213743 0.01156422 Inf -1.848 1.0000
## 0.0011572 0.00530900 Inf 0.218 1.0000
## 0.0033569 0.00534569 Inf 0.628 1.0000
## -0.3075876 0.08422731 Inf -3.652 0.6514
## -0.0176691 0.00952411 Inf -1.855 1.0000
## -0.0019179 0.00590792 Inf -0.325 1.0000
## 0.0035567 0.00482984 Inf 0.736 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.1798322 0.03274332 Inf -5.492 0.0006
## -0.0218027 0.01167233 Inf -1.868 1.0000
## 0.0019112 0.00519423 Inf 0.368 1.0000
## 0.0034286 0.00533213 Inf 0.643 1.0000
## 0.0038205 0.00754786 Inf 0.506 1.0000
## -0.0517391 0.01647473 Inf -3.141 0.9743
## -0.5686439 0.04045094 Inf -14.058 <.0001
## 0.0035969 0.00482507 Inf 0.745 1.0000
## 0.0028528 0.00544220 Inf 0.524 1.0000
## 0.0038205 0.00509564 Inf 0.750 1.0000
## 0.0038205 0.00536246 Inf 0.712 1.0000
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0368162 0.02723704 Inf -1.352 1.0000
## 0.0038205 0.00509564 Inf 0.750 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0038205 0.00509564 Inf 0.750 1.0000
## 0.0038205 0.00536246 Inf 0.712 1.0000
## 0.0038205 0.00492154 Inf 0.776 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## -0.0575250 0.03564691 Inf -1.614 1.0000
## 0.0019265 0.00541620 Inf 0.356 1.0000
## 0.0038205 0.00497246 Inf 0.768 1.0000
## 0.0038205 0.00479878 Inf 0.796 1.0000
## 0.0038205 0.00525897 Inf 0.726 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0171524 0.01158586 Inf 1.480 1.0000
## -0.0694173 0.02330222 Inf -2.979 0.9942
## -0.0324549 0.01670045 Inf -1.943 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0276615 0.01676972 Inf -1.649 1.0000
## 0.0057075 0.01167027 Inf 0.489 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0187363 0.01105363 Inf 1.695 1.0000
## 0.0182655 0.00958900 Inf 1.905 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0115096 0.01395985 Inf -0.824 1.0000
## -0.0554926 0.02374486 Inf -2.337 1.0000
## 0.0152501 0.00972898 Inf 1.567 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0187363 0.01105363 Inf 1.695 1.0000
## 0.0179391 0.00961780 Inf 1.865 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.1348994 0.03099481 Inf -4.352 0.1052
## -0.0619754 0.02486524 Inf -2.492 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0187363 0.01105363 Inf 1.695 1.0000
## 0.0178150 0.00962894 Inf 1.850 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0703635 0.02343442 Inf -3.003 0.9926
## 0.0125761 0.01050550 Inf 1.197 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0187363 0.01105363 Inf 1.695 1.0000
## 0.0140602 0.01001159 Inf 1.404 1.0000
## 0.0183694 0.00951071 Inf 1.931 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0158399 0.00981959 Inf 1.613 1.0000
## 0.0187363 0.00969374 Inf 1.933 1.0000
## 0.0184216 0.00947875 Inf 1.943 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0330434 0.03290112 Inf -1.004 1.0000
## 0.0166079 0.00974253 Inf 1.705 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0120399 0.01025044 Inf 1.175 1.0000
## -0.0754030 0.02705764 Inf -2.787 0.9995
## -0.8767671 0.02084695 Inf -42.057 <.0001
## -0.6781079 0.04342776 Inf -15.615 <.0001
## 0.0187363 0.01105363 Inf 1.695 1.0000
## 0.0164804 0.00975507 Inf 1.689 1.0000
## 0.0183694 0.00951071 Inf 1.931 1.0000
## 0.0179941 0.00943770 Inf 1.907 1.0000
## 0.0182727 0.00968351 Inf 1.887 1.0000
## 0.0187363 0.00954873 Inf 1.962 1.0000
## 0.0187363 0.00969374 Inf 1.933 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0466221 0.03799220 Inf -1.227 1.0000
## 0.0187363 0.00954873 Inf 1.962 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0179552 0.00961637 Inf 1.867 1.0000
## 0.0178365 0.00979457 Inf 1.821 1.0000
## 0.0157856 0.00968298 Inf 1.630 1.0000
## -0.1462748 0.03465366 Inf -4.221 0.1642
## 0.0108416 0.01403165 Inf 0.773 1.0000
## 0.0140014 0.01001824 Inf 1.398 1.0000
## -0.0029068 0.01208167 Inf -0.241 1.0000
## -0.9489838 0.01040422 Inf -91.211 <.0001
## -0.9488069 0.01119311 Inf -84.767 <.0001
## -0.0109771 0.01386715 Inf -0.792 1.0000
## -0.0064586 0.01407793 Inf -0.459 1.0000
## 0.0160730 0.00965890 Inf 1.664 1.0000
## 0.0182727 0.00968351 Inf 1.887 1.0000
## -0.2926718 0.08461050 Inf -3.459 0.8247
## -0.0027533 0.01245986 Inf -0.221 1.0000
## 0.0129979 0.00999501 Inf 1.300 1.0000
## 0.0184724 0.00940900 Inf 1.963 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.1649164 0.03370736 Inf -4.893 0.0115
## -0.0068869 0.01416655 Inf -0.486 1.0000
## 0.0168269 0.00959779 Inf 1.753 1.0000
## 0.0183444 0.00967619 Inf 1.896 1.0000
## 0.0187363 0.01105363 Inf 1.695 1.0000
## -0.0368233 0.01831518 Inf -2.011 1.0000
## -0.5537282 0.04126110 Inf -13.420 <.0001
## 0.0185127 0.00940664 Inf 1.968 1.0000
## 0.0177686 0.00973611 Inf 1.825 1.0000
## 0.0187363 0.00954873 Inf 1.962 1.0000
## 0.0187363 0.00969374 Inf 1.933 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0219004 0.02839097 Inf -0.771 1.0000
## 0.0187363 0.00954873 Inf 1.962 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0187363 0.00954873 Inf 1.962 1.0000
## 0.0187363 0.00969374 Inf 1.933 1.0000
## 0.0187363 0.00945696 Inf 1.981 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## -0.0426093 0.03653337 Inf -1.166 1.0000
## 0.0168423 0.00971974 Inf 1.733 1.0000
## 0.0187363 0.00948356 Inf 1.976 1.0000
## 0.0187363 0.00939366 Inf 1.995 1.0000
## 0.0187363 0.00963687 Inf 1.944 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0015839 0.00774565 Inf -0.204 1.0000
## -0.0881536 0.02168962 Inf -4.064 0.2638
## -0.0511912 0.01435602 Inf -3.566 0.7343
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0463978 0.01443423 Inf -3.214 0.9553
## -0.0130288 0.00790382 Inf -1.648 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0004708 0.00420170 Inf -0.112 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0302459 0.01103121 Inf -2.742 0.9997
## -0.0742288 0.02216329 Inf -3.349 0.8973
## -0.0034862 0.00452894 Inf -0.770 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0007972 0.00426902 Inf -0.187 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1536357 0.02979971 Inf -5.156 0.0033
## -0.0807117 0.02336029 Inf -3.455 0.8277
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0009213 0.00429481 Inf -0.215 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0890998 0.02183163 Inf -4.081 0.2514
## -0.0061602 0.00602914 Inf -1.022 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0015839 0.00796431 Inf -0.199 1.0000
## -0.0881536 0.02176866 Inf -4.050 0.2749
## -0.0511912 0.01447517 Inf -3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0865697 0.02269665 Inf -3.814 0.4864
## -0.0496073 0.01583730 Inf -3.132 0.9760
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0448139 0.01590844 Inf -2.817 0.9992
## -0.0114449 0.01035806 Inf -1.105 1.0000
## 0.0015839 0.00774565 Inf 0.204 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0015839 0.00963035 Inf 0.164 1.0000
## 0.0011131 0.00790772 Inf 0.141 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0286620 0.01290161 Inf -2.222 1.0000
## -0.0726450 0.02314984 Inf -3.138 0.9748
## -0.0019023 0.00808538 Inf -0.235 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0015839 0.00963035 Inf 0.164 1.0000
## 0.0007867 0.00794359 Inf 0.099 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.1520518 0.03054065 Inf -4.979 0.0077
## -0.0791278 0.02429822 Inf -3.257 0.9407
## 0.0015839 0.00774565 Inf 0.204 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0015839 0.00963035 Inf 0.164 1.0000
## 0.0006626 0.00795743 Inf 0.083 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0875160 0.02283239 Inf -3.833 0.4677
## -0.0045763 0.00901107 Inf -0.508 1.0000
## 0.0015839 0.00774565 Inf 0.204 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0015839 0.00963035 Inf 0.164 1.0000
## -0.0030922 0.00842636 Inf -0.367 1.0000
## 0.0012170 0.00781229 Inf 0.156 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0013125 0.00819259 Inf -0.160 1.0000
## 0.0015839 0.00803302 Inf 0.197 1.0000
## 0.0012692 0.00777319 Inf 0.163 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0501958 0.03247161 Inf -1.546 1.0000
## -0.0005445 0.00809794 Inf -0.067 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0051125 0.00871363 Inf -0.587 1.0000
## -0.0925554 0.02653809 Inf -3.488 0.8022
## -0.8939195 0.02005991 Inf -44.562 <.0001
## -0.6952603 0.04306433 Inf -16.145 <.0001
## 0.0015839 0.00963035 Inf 0.164 1.0000
## -0.0006720 0.00811338 Inf -0.083 1.0000
## 0.0012170 0.00781229 Inf 0.156 1.0000
## 0.0008417 0.00772439 Inf 0.109 1.0000
## 0.0011203 0.00802205 Inf 0.140 1.0000
## 0.0015839 0.00785742 Inf 0.202 1.0000
## 0.0015839 0.00803302 Inf 0.197 1.0000
## 0.0015839 0.00774565 Inf 0.204 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0637745 0.03762249 Inf -1.695 1.0000
## 0.0015839 0.00785742 Inf 0.202 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0008028 0.00794180 Inf 0.101 1.0000
## 0.0006841 0.00815701 Inf 0.084 1.0000
## -0.0013668 0.00802849 Inf -0.170 1.0000
## -0.1634272 0.03424740 Inf -4.772 0.0198
## -0.0063108 0.01295342 Inf -0.487 1.0000
## -0.0031510 0.00843441 Inf -0.374 1.0000
## -0.0200592 0.01083184 Inf -1.852 1.0000
## -0.9661362 0.00878588 Inf -109.965 <.0001
## -0.9659593 0.00970685 Inf -99.513 <.0001
## -0.0281295 0.01280079 Inf -2.197 1.0000
## -0.0236110 0.01302474 Inf -1.813 1.0000
## -0.0010794 0.00799863 Inf -0.135 1.0000
## 0.0011203 0.00802205 Inf 0.140 1.0000
## -0.3098242 0.08443997 Inf -3.669 0.6340
## -0.0199057 0.01125193 Inf -1.769 1.0000
## -0.0041545 0.00840932 Inf -0.494 1.0000
## 0.0013200 0.00768783 Inf 0.172 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.1820688 0.03328829 Inf -5.469 0.0006
## -0.0240393 0.01312088 Inf -1.832 1.0000
## -0.0003255 0.00792258 Inf -0.041 1.0000
## 0.0011920 0.00801299 Inf 0.149 1.0000
## 0.0015839 0.00963035 Inf 0.164 1.0000
## -0.0539757 0.01753305 Inf -3.079 0.9848
## -0.5708806 0.04088851 Inf -13.962 <.0001
## 0.0013603 0.00768482 Inf 0.177 1.0000
## 0.0006162 0.00808691 Inf 0.076 1.0000
## 0.0015839 0.00785742 Inf 0.202 1.0000
## 0.0015839 0.00803302 Inf 0.197 1.0000
## 0.0015839 0.00774565 Inf 0.204 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0390528 0.02788938 Inf -1.400 1.0000
## 0.0015839 0.00785742 Inf 0.202 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0015839 0.00785742 Inf 0.202 1.0000
## 0.0015839 0.00803302 Inf 0.197 1.0000
## 0.0015839 0.00774565 Inf 0.204 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## -0.0597617 0.03614833 Inf -1.653 1.0000
## -0.0003101 0.00806985 Inf -0.038 1.0000
## 0.0015839 0.00777810 Inf 0.204 1.0000
## 0.0015839 0.00766823 Inf 0.207 1.0000
## 0.0015839 0.00796431 Inf 0.199 1.0000
## 0.0369624 0.02565322 Inf 1.441 1.0000
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0417558 0.02569994 Inf 1.625 1.0000
## 0.0751248 0.02272626 Inf 3.306 0.9197
## 0.0881536 0.02168962 Inf 4.064 0.2638
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0881536 0.02243185 Inf 3.930 0.3752
## 0.0876828 0.02174682 Inf 4.032 0.2885
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0579077 0.02396912 Inf 2.416 1.0000
## 0.0139248 0.03070434 Inf 0.454 1.0000
## 0.0846674 0.02180468 Inf 3.883 0.4189
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0881536 0.02243185 Inf 3.930 0.3752
## 0.0873564 0.02175906 Inf 4.015 0.3022
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## -0.0654821 0.03660157 Inf -1.789 1.0000
## 0.0074419 0.03157820 Inf 0.236 1.0000
## 0.0881536 0.02168962 Inf 4.064 0.2638
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0881536 0.02243185 Inf 3.930 0.3752
## 0.0872323 0.02176381 Inf 4.008 0.3076
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## -0.0009462 0.03046381 Inf -0.031 1.0000
## 0.0819934 0.02215860 Inf 3.700 0.6024
## 0.0881536 0.02168962 Inf 4.064 0.2638
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0881536 0.02243185 Inf 3.930 0.3752
## 0.0834775 0.02193065 Inf 3.806 0.4942
## 0.0877867 0.02171256 Inf 4.043 0.2798
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0852572 0.02184606 Inf 3.903 0.4004
## 0.0881536 0.02179389 Inf 4.045 0.2785
## 0.0878389 0.02169866 Inf 4.048 0.2760
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0363739 0.03823163 Inf 0.951 1.0000
## 0.0860252 0.02181259 Inf 3.944 0.3626
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0814572 0.02203815 Inf 3.696 0.6066
## -0.0059857 0.03333132 Inf -0.180 1.0000
## -0.8073498 0.02862360 Inf -28.206 <.0001
## -0.6086906 0.04764095 Inf -12.777 <.0001
## 0.0881536 0.02243185 Inf 3.930 0.3752
## 0.0858977 0.02181802 Inf 3.937 0.3688
## 0.0877867 0.02171256 Inf 4.043 0.2798
## 0.0874114 0.02168014 Inf 4.032 0.2886
## 0.0876900 0.02178867 Inf 4.025 0.2943
## 0.0881536 0.02172978 Inf 4.057 0.2694
## 0.0881536 0.02179389 Inf 4.045 0.2785
## 0.0881536 0.02168962 Inf 4.064 0.2638
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0227953 0.04268976 Inf 0.534 1.0000
## 0.0881536 0.02172978 Inf 4.057 0.2694
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0873725 0.02175845 Inf 4.016 0.3016
## 0.0872538 0.02183762 Inf 3.996 0.3179
## 0.0852029 0.02178492 Inf 3.911 0.3925
## -0.0768574 0.03974838 Inf -1.934 1.0000
## 0.0802589 0.02402979 Inf 3.340 0.9023
## 0.0834187 0.02193361 Inf 3.803 0.4974
## 0.0665105 0.02293238 Inf 2.900 0.9976
## -0.8795665 0.02216820 Inf -39.677 <.0001
## -0.8793896 0.02254942 Inf -38.998 <.0001
## 0.0584402 0.02391558 Inf 2.444 1.0000
## 0.0629588 0.02404140 Inf 2.619 1.0000
## 0.0854903 0.02177462 Inf 3.926 0.3786
## 0.0876900 0.02178867 Inf 4.025 0.2943
## -0.2232545 0.08682811 Inf -2.571 1.0000
## 0.0666640 0.02313398 Inf 2.882 0.9981
## 0.0824152 0.02192172 Inf 3.760 0.5419
## 0.0878898 0.02166836 Inf 4.056 0.2699
## 0.0881536 0.02176866 Inf 4.050 0.2749
## -0.0954991 0.03892759 Inf -2.453 1.0000
## 0.0625304 0.02409310 Inf 2.595 1.0000
## 0.0862443 0.02174864 Inf 3.966 0.3435
## 0.0877617 0.02178552 Inf 4.028 0.2913
## 0.0881536 0.02243185 Inf 3.930 0.3752
## 0.0325940 0.02673135 Inf 1.219 1.0000
## -0.4843108 0.04566243 Inf -10.606 <.0001
## 0.0879300 0.02166739 Inf 4.058 0.2684
## 0.0871859 0.02181137 Inf 3.997 0.3165
## 0.0881536 0.02172978 Inf 4.057 0.2694
## 0.0881536 0.02179389 Inf 4.045 0.2785
## 0.0881536 0.02168962 Inf 4.064 0.2638
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0475169 0.03443001 Inf 1.380 1.0000
## 0.0881536 0.02172978 Inf 4.057 0.2694
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0881536 0.02172978 Inf 4.057 0.2694
## 0.0881536 0.02179389 Inf 4.045 0.2785
## 0.0881536 0.02168962 Inf 4.064 0.2638
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0268081 0.04139730 Inf 0.648 1.0000
## 0.0862596 0.02180275 Inf 3.956 0.3515
## 0.0881536 0.02170123 Inf 4.062 0.2654
## 0.0881536 0.02166209 Inf 4.069 0.2600
## 0.0881536 0.02176866 Inf 4.050 0.2749
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0047934 0.01991491 Inf 0.241 1.0000
## 0.0381624 0.01588486 Inf 2.402 1.0000
## 0.0511912 0.01435602 Inf 3.566 0.7343
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0511912 0.01545457 Inf 3.312 0.9164
## 0.0507204 0.01444257 Inf 3.512 0.7821
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0209453 0.01762202 Inf 1.189 1.0000
## -0.0230376 0.02605685 Inf -0.884 1.0000
## 0.0477050 0.01453123 Inf 3.283 0.9299
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0511912 0.01545457 Inf 3.312 0.9164
## 0.0503940 0.01446119 Inf 3.485 0.8045
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## -0.1024445 0.03280034 Inf -3.123 0.9777
## -0.0295205 0.02708127 Inf -1.090 1.0000
## 0.0511912 0.01435602 Inf 3.566 0.7343
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0511912 0.01545457 Inf 3.312 0.9164
## 0.0502699 0.01446840 Inf 3.474 0.8127
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## -0.0379086 0.02577332 Inf -1.471 1.0000
## 0.0450311 0.01505844 Inf 2.990 0.9935
## 0.0511912 0.01435602 Inf 3.566 0.7343
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0511912 0.01545457 Inf 3.312 0.9164
## 0.0465151 0.01472020 Inf 3.160 0.9701
## 0.0508243 0.01439088 Inf 3.532 0.7650
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0482948 0.01459293 Inf 3.309 0.9178
## 0.0511912 0.01451309 Inf 3.527 0.7689
## 0.0508765 0.01436987 Inf 3.541 0.7573
## 0.0511912 0.01447517 Inf 3.536 0.7608
## -0.0005885 0.03460922 Inf -0.017 1.0000
## 0.0490628 0.01454236 Inf 3.374 0.8830
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0444948 0.01488089 Inf 2.990 0.9935
## -0.0429481 0.02910670 Inf -1.476 1.0000
## -0.8443122 0.02353687 Inf -35.872 <.0001
## -0.6456530 0.04477282 Inf -14.421 <.0001
## 0.0511912 0.01545457 Inf 3.312 0.9164
## 0.0489353 0.01455057 Inf 3.363 0.8893
## 0.0508243 0.01439088 Inf 3.532 0.7650
## 0.0504490 0.01434213 Inf 3.518 0.7773
## 0.0507276 0.01450551 Inf 3.497 0.7945
## 0.0511912 0.01441663 Inf 3.551 0.7480
## 0.0511912 0.01451309 Inf 3.527 0.7689
## 0.0511912 0.01435602 Inf 3.566 0.7343
## 0.0511912 0.01447517 Inf 3.536 0.7608
## -0.0141671 0.03947911 Inf -0.359 1.0000
## 0.0511912 0.01441663 Inf 3.551 0.7480
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0504101 0.01446026 Inf 3.486 0.8034
## 0.0502915 0.01457919 Inf 3.450 0.8318
## 0.0482405 0.01450127 Inf 3.327 0.9093
## -0.1138198 0.03627816 Inf -3.137 0.9749
## 0.0432965 0.01769771 Inf 2.446 1.0000
## 0.0464563 0.01472464 Inf 3.155 0.9712
## 0.0295481 0.01618132 Inf 1.826 1.0000
## -0.9165289 0.01505022 Inf -60.898 <.0001
## -0.9163520 0.01560621 Inf -58.717 <.0001
## 0.0214778 0.01754901 Inf 1.224 1.0000
## 0.0259964 0.01771902 Inf 1.467 1.0000
## 0.0485279 0.01448564 Inf 3.350 0.8968
## 0.0507276 0.01450551 Inf 3.497 0.7945
## -0.2602169 0.08529357 Inf -3.051 0.9882
## 0.0297016 0.01646574 Inf 1.804 1.0000
## 0.0454528 0.01470743 Inf 3.090 0.9831
## 0.0509274 0.01432404 Inf 3.555 0.7439
## 0.0511912 0.01447517 Inf 3.536 0.7608
## -0.1324615 0.03537653 Inf -3.744 0.5574
## 0.0255680 0.01778921 Inf 1.437 1.0000
## 0.0492819 0.01444613 Inf 3.411 0.8589
## 0.0507993 0.01450073 Inf 3.503 0.7894
## 0.0511912 0.01545457 Inf 3.312 0.9164
## -0.0043684 0.02123017 Inf -0.206 1.0000
## -0.5212732 0.04266494 Inf -12.218 <.0001
## 0.0509676 0.01432255 Inf 3.559 0.7410
## 0.0502235 0.01453987 Inf 3.454 0.8284
## 0.0511912 0.01441663 Inf 3.551 0.7480
## 0.0511912 0.01451309 Inf 3.527 0.7689
## 0.0511912 0.01435602 Inf 3.566 0.7343
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0105545 0.03035641 Inf 0.348 1.0000
## 0.0511912 0.01441663 Inf 3.551 0.7480
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0511912 0.01441663 Inf 3.551 0.7480
## 0.0511912 0.01451309 Inf 3.527 0.7689
## 0.0511912 0.01435602 Inf 3.566 0.7343
## 0.0511912 0.01447517 Inf 3.536 0.7608
## -0.0101543 0.03807768 Inf -0.267 1.0000
## 0.0492972 0.01452747 Inf 3.393 0.8708
## 0.0511912 0.01437355 Inf 3.561 0.7383
## 0.0511912 0.01431440 Inf 3.576 0.7247
## 0.0511912 0.01447517 Inf 3.536 0.7608
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01439284 Inf -3.224 0.9524
## -0.0130288 0.00782796 Inf -1.664 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0004708 0.00405722 Inf -0.116 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0463978 0.01455274 Inf -3.188 0.9630
## -0.0130288 0.00811822 Inf -1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0333690 0.01595713 Inf 2.091 1.0000
## 0.0463978 0.01443423 Inf 3.214 0.9553
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0463978 0.01552725 Inf 2.988 0.9936
## 0.0459270 0.01452039 Inf 3.163 0.9694
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0161519 0.01768846 Inf 0.913 1.0000
## -0.0278310 0.02610277 Inf -1.066 1.0000
## 0.0429116 0.01460901 Inf 2.937 0.9963
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0463978 0.01552725 Inf 2.988 0.9936
## 0.0456006 0.01453896 Inf 3.136 0.9751
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## -0.1072379 0.03283676 Inf -3.266 0.9371
## -0.0343139 0.02712549 Inf -1.265 1.0000
## 0.0463978 0.01443423 Inf 3.214 0.9553
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0463978 0.01552725 Inf 2.988 0.9936
## 0.0454765 0.01454615 Inf 3.126 0.9771
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## -0.0427020 0.02581983 Inf -1.654 1.0000
## 0.0402377 0.01513386 Inf 2.659 0.9999
## 0.0463978 0.01443423 Inf 3.214 0.9553
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0463978 0.01552725 Inf 2.988 0.9936
## 0.0417217 0.01479715 Inf 2.820 0.9992
## 0.0460309 0.01446896 Inf 3.181 0.9648
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0435014 0.01467030 Inf 2.965 0.9950
## 0.0463978 0.01459046 Inf 3.180 0.9651
## 0.0460831 0.01444805 Inf 3.190 0.9626
## 0.0463978 0.01455274 Inf 3.188 0.9630
## -0.0053819 0.03464357 Inf -0.155 1.0000
## 0.0442694 0.01461989 Inf 3.028 0.9905
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0397014 0.01495727 Inf 2.654 0.9999
## -0.0477415 0.02914790 Inf -1.638 1.0000
## -0.8491056 0.02357921 Inf -36.011 <.0001
## -0.6504464 0.04479589 Inf -14.520 <.0001
## 0.0463978 0.01552725 Inf 2.988 0.9936
## 0.0441419 0.01462807 Inf 3.018 0.9914
## 0.0460309 0.01446896 Inf 3.181 0.9648
## 0.0456556 0.01442053 Inf 3.166 0.9686
## 0.0459342 0.01458299 Inf 3.150 0.9723
## 0.0463978 0.01449452 Inf 3.201 0.9594
## 0.0463978 0.01459046 Inf 3.180 0.9651
## 0.0463978 0.01443423 Inf 3.214 0.9553
## 0.0463978 0.01455274 Inf 3.188 0.9630
## -0.0189605 0.03950936 Inf -0.480 1.0000
## 0.0463978 0.01449452 Inf 3.201 0.9594
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0456167 0.01453803 Inf 3.138 0.9749
## 0.0454981 0.01465634 Inf 3.104 0.9809
## 0.0434471 0.01457914 Inf 2.980 0.9942
## -0.1186132 0.03631104 Inf -3.267 0.9367
## 0.0385031 0.01776211 Inf 2.168 1.0000
## 0.0416629 0.01480158 Inf 2.815 0.9992
## 0.0247548 0.01625304 Inf 1.523 1.0000
## -0.9213223 0.01511986 Inf -60.935 <.0001
## -0.9211454 0.01567336 Inf -58.771 <.0001
## 0.0166844 0.01761569 Inf 0.947 1.0000
## 0.0212030 0.01778479 Inf 1.192 1.0000
## 0.0437345 0.01456355 Inf 3.003 0.9926
## 0.0459342 0.01458299 Inf 3.150 0.9723
## -0.2650103 0.08530711 Inf -3.107 0.9806
## 0.0249082 0.01653622 Inf 1.506 1.0000
## 0.0406594 0.01478459 Inf 2.750 0.9997
## 0.0461340 0.01440246 Inf 3.203 0.9587
## 0.0463978 0.01455274 Inf 3.188 0.9630
## -0.1372549 0.03541013 Inf -3.876 0.4255
## 0.0207746 0.01785475 Inf 1.164 1.0000
## 0.0444885 0.01452414 Inf 3.063 0.9868
## 0.0460059 0.01457823 Inf 3.156 0.9710
## 0.0463978 0.01552725 Inf 2.988 0.9936
## -0.0091618 0.02128620 Inf -0.430 1.0000
## -0.5260666 0.04269004 Inf -12.323 <.0001
## 0.0461742 0.01440098 Inf 3.206 0.9578
## 0.0454301 0.01461724 Inf 3.108 0.9803
## 0.0463978 0.01449452 Inf 3.201 0.9594
## 0.0463978 0.01459046 Inf 3.180 0.9651
## 0.0463978 0.01443423 Inf 3.214 0.9553
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0057611 0.03039533 Inf 0.190 1.0000
## 0.0463978 0.01449452 Inf 3.201 0.9594
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0463978 0.01449452 Inf 3.201 0.9594
## 0.0463978 0.01459046 Inf 3.180 0.9651
## 0.0463978 0.01443423 Inf 3.214 0.9553
## 0.0463978 0.01455274 Inf 3.188 0.9630
## -0.0149477 0.03810901 Inf -0.392 1.0000
## 0.0445038 0.01460504 Inf 3.047 0.9886
## 0.0463978 0.01445167 Inf 3.211 0.9565
## 0.0463978 0.01439284 Inf 3.224 0.9524
## 0.0463978 0.01455274 Inf 3.188 0.9630
## 0.0130288 0.00790382 Inf 1.648 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0130288 0.00975802 Inf 1.335 1.0000
## 0.0125580 0.00806172 Inf 1.558 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.0172171 0.01296933 Inf -1.328 1.0000
## -0.0612000 0.02317961 Inf -2.640 1.0000
## 0.0095426 0.00823012 Inf 1.159 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0130288 0.00975802 Inf 1.335 1.0000
## 0.0122316 0.00809623 Inf 1.511 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.1406069 0.03056373 Inf -4.600 0.0409
## -0.0676829 0.02432620 Inf -2.782 0.9995
## 0.0130288 0.00790382 Inf 1.648 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0130288 0.00975802 Inf 1.335 1.0000
## 0.0121075 0.00810956 Inf 1.493 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.0760710 0.02286180 Inf -3.327 0.9089
## 0.0068686 0.00913673 Inf 0.752 1.0000
## 0.0130288 0.00790382 Inf 1.648 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0130288 0.00975802 Inf 1.335 1.0000
## 0.0083527 0.00856320 Inf 0.975 1.0000
## 0.0126619 0.00796835 Inf 1.589 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0101324 0.00833659 Inf 1.215 1.0000
## 0.0130288 0.00818564 Inf 1.592 1.0000
## 0.0127141 0.00793014 Inf 1.603 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.0387509 0.03249476 Inf -1.193 1.0000
## 0.0109004 0.00824508 Inf 1.322 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0063324 0.00884263 Inf 0.716 1.0000
## -0.0811105 0.02656329 Inf -3.053 0.9879
## -0.8824746 0.02017033 Inf -43.751 <.0001
## -0.6838154 0.04310958 Inf -15.862 <.0001
## 0.0130288 0.00975802 Inf 1.335 1.0000
## 0.0107729 0.00825999 Inf 1.304 1.0000
## 0.0126619 0.00796835 Inf 1.589 1.0000
## 0.0122866 0.00788140 Inf 1.559 1.0000
## 0.0125652 0.00817391 Inf 1.537 1.0000
## 0.0130288 0.00801338 Inf 1.626 1.0000
## 0.0130288 0.00818564 Inf 1.592 1.0000
## 0.0130288 0.00790382 Inf 1.648 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.0523296 0.03764131 Inf -1.390 1.0000
## 0.0130288 0.00801338 Inf 1.626 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0122477 0.00809451 Inf 1.513 1.0000
## 0.0121290 0.00830553 Inf 1.460 1.0000
## 0.0100781 0.00817527 Inf 1.233 1.0000
## -0.1519823 0.03426845 Inf -4.435 0.0779
## 0.0051341 0.01303923 Inf 0.394 1.0000
## 0.0082939 0.00857101 Inf 0.968 1.0000
## -0.0086143 0.01091936 Inf -0.789 1.0000
## -0.9546913 0.00899005 Inf -106.194 <.0001
## -0.9545144 0.00989227 Inf -96.491 <.0001
## -0.0166846 0.01286937 Inf -1.296 1.0000
## -0.0121660 0.01309505 Inf -0.929 1.0000
## 0.0103655 0.00814651 Inf 1.272 1.0000
## 0.0125652 0.00817391 Inf 1.537 1.0000
## -0.2983793 0.08445205 Inf -3.533 0.7638
## -0.0084608 0.01133633 Inf -0.746 1.0000
## 0.0072904 0.00854456 Inf 0.853 1.0000
## 0.0127650 0.00784659 Inf 1.627 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.1706239 0.03331085 Inf -5.122 0.0039
## -0.0125944 0.01319039 Inf -0.955 1.0000
## 0.0111194 0.00807336 Inf 1.377 1.0000
## 0.0126369 0.00816517 Inf 1.548 1.0000
## 0.0130288 0.00975802 Inf 1.335 1.0000
## -0.0425308 0.01757507 Inf -2.420 1.0000
## -0.5594356 0.04092896 Inf -13.668 <.0001
## 0.0128052 0.00784373 Inf 1.633 1.0000
## 0.0120611 0.00823656 Inf 1.464 1.0000
## 0.0130288 0.00801338 Inf 1.626 1.0000
## 0.0130288 0.00818564 Inf 1.592 1.0000
## 0.0130288 0.00790382 Inf 1.648 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.0276079 0.02791827 Inf -0.989 1.0000
## 0.0130288 0.00801338 Inf 1.626 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0130288 0.00801338 Inf 1.626 1.0000
## 0.0130288 0.00818564 Inf 1.592 1.0000
## 0.0130288 0.00790382 Inf 1.648 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## -0.0483168 0.03616821 Inf -1.336 1.0000
## 0.0111348 0.00821795 Inf 1.355 1.0000
## 0.0130288 0.00793562 Inf 1.642 1.0000
## 0.0130288 0.00782796 Inf 1.664 1.0000
## 0.0130288 0.00811822 Inf 1.605 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0004708 0.00420170 Inf -0.112 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0302459 0.01103121 Inf -2.742 0.9997
## -0.0742288 0.02216329 Inf -3.349 0.8973
## -0.0034862 0.00452894 Inf -0.770 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0007972 0.00426902 Inf -0.187 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1536357 0.02979971 Inf -5.156 0.0033
## -0.0807117 0.02336029 Inf -3.455 0.8277
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0009213 0.00429481 Inf -0.215 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0890998 0.02183163 Inf -4.081 0.2514
## -0.0061602 0.00602914 Inf -1.022 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0004708 0.00459233 Inf -0.103 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0004708 0.00709950 Inf -0.066 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0302459 0.01242724 Inf -2.434 1.0000
## -0.0742288 0.02289017 Inf -3.243 0.9458
## -0.0034862 0.00729794 Inf -0.478 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0007972 0.00713955 Inf -0.112 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1536357 0.03034421 Inf -5.063 0.0052
## -0.0807117 0.02405102 Inf -3.356 0.8935
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0009213 0.00715500 Inf -0.129 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0890998 0.02256920 Inf -3.948 0.3591
## -0.0061602 0.00831259 Inf -0.741 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0297751 0.01114416 Inf -2.672 0.9999
## -0.0737580 0.02221931 Inf -3.320 0.9129
## -0.0030154 0.00480055 Inf -0.628 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## 0.0004708 0.00709950 Inf 0.066 1.0000
## -0.0003264 0.00455662 Inf -0.072 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.1531649 0.02984142 Inf -5.133 0.0037
## -0.0802409 0.02341343 Inf -3.427 0.8481
## 0.0004708 0.00420170 Inf 0.112 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## 0.0004708 0.00709950 Inf 0.066 1.0000
## -0.0004505 0.00458077 Inf -0.098 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0886290 0.02188846 Inf -4.049 0.2752
## -0.0056894 0.00623543 Inf -0.912 1.0000
## 0.0004708 0.00420170 Inf 0.112 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## 0.0004708 0.00709950 Inf 0.066 1.0000
## -0.0042053 0.00535534 Inf -0.785 1.0000
## 0.0001039 0.00432348 Inf 0.024 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0024256 0.00497880 Inf -0.487 1.0000
## 0.0004708 0.00471049 Inf 0.100 1.0000
## 0.0001561 0.00425241 Inf 0.037 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0513089 0.03181469 Inf -1.613 1.0000
## -0.0016576 0.00482118 Inf -0.344 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0062256 0.00579744 Inf -1.074 1.0000
## -0.0936685 0.02573048 Inf -3.640 0.6628
## -0.8950326 0.01896939 Inf -47.183 <.0001
## -0.6963734 0.04256801 Inf -16.359 <.0001
## 0.0004708 0.00709950 Inf 0.066 1.0000
## -0.0017851 0.00484711 Inf -0.368 1.0000
## 0.0001039 0.00432348 Inf 0.024 1.0000
## -0.0002714 0.00416271 Inf -0.065 1.0000
## 0.0000072 0.00469193 Inf 0.002 1.0000
## 0.0004708 0.00440435 Inf 0.107 1.0000
## 0.0004708 0.00471049 Inf 0.100 1.0000
## 0.0004708 0.00420170 Inf 0.112 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0648875 0.03705712 Inf -1.751 1.0000
## 0.0004708 0.00440435 Inf 0.107 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0003103 0.00455350 Inf -0.068 1.0000
## -0.0004290 0.00491929 Inf -0.087 1.0000
## -0.0024799 0.00470391 Inf -0.527 1.0000
## -0.1645402 0.03362529 Inf -4.893 0.0115
## -0.0074239 0.01120169 Inf -0.663 1.0000
## -0.0042641 0.00536801 Inf -0.794 1.0000
## -0.0211723 0.00866328 Inf -2.444 1.0000
## -0.9672493 0.00589245 Inf -164.151 <.0001
## -0.9670724 0.00719387 Inf -134.430 <.0001
## -0.0292426 0.01102724 Inf -2.652 0.9999
## -0.0247240 0.01128605 Inf -2.191 1.0000
## -0.0021925 0.00465265 Inf -0.471 1.0000
## 0.0000072 0.00469193 Inf 0.002 1.0000
## -0.3109373 0.08418917 Inf -3.693 0.6095
## -0.0210188 0.00918309 Inf -2.289 1.0000
## -0.0052676 0.00532883 Inf -0.988 1.0000
## 0.0002070 0.00409426 Inf 0.051 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.1831819 0.03264780 Inf -5.611 0.0003
## -0.0251524 0.01139691 Inf -2.207 1.0000
## -0.0014385 0.00452036 Inf -0.318 1.0000
## 0.0000789 0.00467640 Inf 0.017 1.0000
## 0.0004708 0.00709950 Inf 0.066 1.0000
## -0.0550888 0.01628434 Inf -3.383 0.8774
## -0.5719936 0.04036626 Inf -14.170 <.0001
## 0.0002472 0.00408858 Inf 0.060 1.0000
## -0.0004969 0.00480219 Inf -0.103 1.0000
## 0.0004708 0.00440435 Inf 0.107 1.0000
## 0.0004708 0.00471049 Inf 0.100 1.0000
## 0.0004708 0.00420170 Inf 0.112 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0401659 0.02712147 Inf -1.481 1.0000
## 0.0004708 0.00440435 Inf 0.107 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## 0.0004708 0.00440435 Inf 0.107 1.0000
## 0.0004708 0.00471049 Inf 0.100 1.0000
## 0.0004708 0.00420170 Inf 0.112 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## -0.0608747 0.03555949 Inf -1.712 1.0000
## -0.0014232 0.00477375 Inf -0.298 1.0000
## 0.0004708 0.00426123 Inf 0.110 1.0000
## 0.0004708 0.00405722 Inf 0.116 1.0000
## 0.0004708 0.00459233 Inf 0.103 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0302459 0.01105403 Inf -2.736 0.9998
## -0.0742288 0.02217465 Inf -3.347 0.8982
## -0.0034862 0.00458422 Inf -0.760 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0007972 0.00432763 Inf -0.184 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1536357 0.02980816 Inf -5.154 0.0033
## -0.0807117 0.02337107 Inf -3.453 0.8289
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0009213 0.00435307 Inf -0.212 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0890998 0.02184317 Inf -4.079 0.2530
## -0.0061602 0.00607078 Inf -1.015 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0046761 0.00516248 Inf -0.906 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0028964 0.00477047 Inf -0.607 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0003147 0.00400597 Inf -0.079 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0517797 0.03178342 Inf -1.629 1.0000
## -0.0021284 0.00460559 Inf -0.462 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01097700 Inf -2.755 0.9997
## -0.0742288 0.02213635 Inf -3.353 0.8950
## -0.0034862 0.00439523 Inf -0.793 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0007972 0.00412690 Inf -0.193 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0302459 0.01118583 Inf -2.704 0.9999
## -0.0742288 0.02224065 Inf -3.338 0.9036
## -0.0034862 0.00489351 Inf -0.712 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0439829 0.02440012 Inf -1.803 1.0000
## 0.0267597 0.01126203 Inf 2.376 1.0000
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0302459 0.01242724 Inf 2.434 1.0000
## 0.0294487 0.01116863 Inf 2.637 1.0000
## 0.0302459 0.01105403 Inf 2.736 0.9998
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.1233898 0.03149993 Inf -3.917 0.3869
## -0.0504658 0.02549147 Inf -1.980 1.0000
## 0.0302459 0.01103121 Inf 2.742 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0302459 0.01242724 Inf 2.434 1.0000
## 0.0293246 0.01117811 Inf 2.623 1.0000
## 0.0302459 0.01105403 Inf 2.736 0.9998
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.0588539 0.02409765 Inf -2.442 1.0000
## 0.0240858 0.01193707 Inf 2.018 1.0000
## 0.0302459 0.01103121 Inf 2.742 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0302459 0.01242724 Inf 2.434 1.0000
## 0.0255698 0.01150602 Inf 2.222 1.0000
## 0.0298790 0.01107696 Inf 2.697 0.9999
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0273495 0.01134093 Inf 2.412 1.0000
## 0.0302459 0.01123486 Inf 2.692 0.9999
## 0.0299312 0.01104959 Inf 2.709 0.9998
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.0215338 0.03337831 Inf -0.645 1.0000
## 0.0281175 0.01127497 Inf 2.494 1.0000
## 0.0302459 0.01105403 Inf 2.736 0.9998
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0235495 0.01171279 Inf 2.011 1.0000
## -0.0638934 0.02763398 Inf -2.312 1.0000
## -0.8652575 0.02163600 Inf -39.992 <.0001
## -0.6665983 0.04380801 Inf -15.216 <.0001
## 0.0302459 0.01242724 Inf 2.434 1.0000
## 0.0279900 0.01128570 Inf 2.480 1.0000
## 0.0298790 0.01107696 Inf 2.697 0.9999
## 0.0295037 0.01101398 Inf 2.679 0.9999
## 0.0297823 0.01122559 Inf 2.653 0.9999
## 0.0302459 0.01110998 Inf 2.722 0.9998
## 0.0302459 0.01123486 Inf 2.692 0.9999
## 0.0302459 0.01103121 Inf 2.742 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.0351124 0.03840545 Inf -0.914 1.0000
## 0.0302459 0.01110998 Inf 2.722 0.9998
## 0.0302459 0.01105403 Inf 2.736 0.9998
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0294648 0.01116741 Inf 2.638 1.0000
## 0.0293462 0.01132112 Inf 2.592 1.0000
## 0.0272953 0.01122280 Inf 2.432 1.0000
## -0.1347651 0.03510647 Inf -3.839 0.4620
## 0.0223512 0.01513219 Inf 1.477 1.0000
## 0.0255110 0.01151175 Inf 2.216 1.0000
## 0.0086029 0.01333612 Inf 0.645 1.0000
## -0.9374742 0.01188465 Inf -78.881 <.0001
## -0.9372973 0.01258118 Inf -74.500 <.0001
## 0.0005325 0.01496966 Inf 0.036 1.0000
## 0.0050511 0.01516674 Inf 0.333 1.0000
## 0.0275826 0.01120229 Inf 2.462 1.0000
## 0.0297823 0.01122559 Inf 2.653 0.9999
## -0.2811622 0.08479923 Inf -3.316 0.9148
## 0.0087563 0.01367974 Inf 0.640 1.0000
## 0.0245076 0.01149070 Inf 2.133 1.0000
## 0.0299821 0.01098986 Inf 2.728 0.9998
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.1534068 0.03417328 Inf -4.489 0.0635
## 0.0046227 0.01524887 Inf 0.303 1.0000
## 0.0283366 0.01115035 Inf 2.541 1.0000
## 0.0298540 0.01121934 Inf 2.661 0.9999
## 0.0302459 0.01242724 Inf 2.434 1.0000
## -0.0253137 0.01915868 Inf -1.321 1.0000
## -0.5422185 0.04165657 Inf -13.016 <.0001
## 0.0300223 0.01098788 Inf 2.732 0.9998
## 0.0292782 0.01127051 Inf 2.598 1.0000
## 0.0302459 0.01110998 Inf 2.722 0.9998
## 0.0302459 0.01123486 Inf 2.692 0.9999
## 0.0302459 0.01103121 Inf 2.742 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.0103908 0.02894382 Inf -0.359 1.0000
## 0.0302459 0.01110998 Inf 2.722 0.9998
## 0.0302459 0.01105403 Inf 2.736 0.9998
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0302459 0.01110998 Inf 2.722 0.9998
## 0.0302459 0.01123486 Inf 2.692 0.9999
## 0.0302459 0.01103121 Inf 2.742 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## -0.0310996 0.03696312 Inf -0.841 1.0000
## 0.0283519 0.01125551 Inf 2.519 1.0000
## 0.0302459 0.01105403 Inf 2.736 0.9998
## 0.0302459 0.01097700 Inf 2.755 0.9997
## 0.0302459 0.01118583 Inf 2.704 0.9999
## 0.0707426 0.02227617 Inf 3.176 0.9662
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0742288 0.02289017 Inf 3.243 0.9458
## 0.0734317 0.02223132 Inf 3.303 0.9209
## 0.0742288 0.02217465 Inf 3.347 0.8982
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## -0.0794069 0.03688573 Inf -2.153 1.0000
## -0.0064829 0.03190721 Inf -0.203 1.0000
## 0.0742288 0.02216329 Inf 3.349 0.8973
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0742288 0.02289017 Inf 3.243 0.9458
## 0.0733076 0.02223597 Inf 3.297 0.9238
## 0.0742288 0.02217465 Inf 3.347 0.8982
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## -0.0148710 0.03080475 Inf -0.483 1.0000
## 0.0680687 0.02262290 Inf 3.009 0.9921
## 0.0742288 0.02216329 Inf 3.349 0.8973
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0742288 0.02289017 Inf 3.243 0.9458
## 0.0695527 0.02239957 Inf 3.105 0.9808
## 0.0738620 0.02218577 Inf 3.329 0.9080
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0713324 0.02231663 Inf 3.196 0.9607
## 0.0742288 0.02226535 Inf 3.334 0.9056
## 0.0739142 0.02217216 Inf 3.334 0.9057
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0224491 0.03850364 Inf 0.583 1.0000
## 0.0721005 0.02228381 Inf 3.236 0.9483
## 0.0742288 0.02217465 Inf 3.347 0.8982
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0675324 0.02250497 Inf 3.001 0.9928
## -0.0199104 0.03364322 Inf -0.592 1.0000
## -0.8212746 0.02898065 Inf -28.339 <.0001
## -0.6226154 0.04785692 Inf -13.010 <.0001
## 0.0742288 0.02289017 Inf 3.243 0.9458
## 0.0719729 0.02228914 Inf 3.229 0.9506
## 0.0738620 0.02218577 Inf 3.329 0.9080
## 0.0734866 0.02215407 Inf 3.317 0.9141
## 0.0737652 0.02226027 Inf 3.314 0.9158
## 0.0742288 0.02220260 Inf 3.343 0.9005
## 0.0742288 0.02226535 Inf 3.334 0.9056
## 0.0742288 0.02216329 Inf 3.349 0.8973
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0088705 0.04293363 Inf 0.207 1.0000
## 0.0742288 0.02220260 Inf 3.343 0.9005
## 0.0742288 0.02217465 Inf 3.347 0.8982
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0734477 0.02223072 Inf 3.304 0.9205
## 0.0733291 0.02230822 Inf 3.287 0.9281
## 0.0712782 0.02225679 Inf 3.203 0.9589
## -0.0907822 0.04001016 Inf -2.269 1.0000
## 0.0663341 0.02445870 Inf 2.712 0.9998
## 0.0694939 0.02240247 Inf 3.102 0.9813
## 0.0525858 0.02338215 Inf 2.249 1.0000
## -0.8934912 0.02262922 Inf -39.484 <.0001
## -0.8933143 0.02300278 Inf -38.835 <.0001
## 0.0445154 0.02434750 Inf 1.828 1.0000
## 0.0490340 0.02447094 Inf 2.004 1.0000
## 0.0715656 0.02224669 Inf 3.217 0.9545
## 0.0737652 0.02226027 Inf 3.314 0.9158
## -0.2371793 0.08694790 Inf -2.728 0.9998
## 0.0527393 0.02357990 Inf 2.237 1.0000
## 0.0684905 0.02239090 Inf 3.059 0.9873
## 0.0739650 0.02214250 Inf 3.340 0.9021
## 0.0742288 0.02224065 Inf 3.338 0.9036
## -0.1094239 0.03919477 Inf -2.792 0.9994
## 0.0486056 0.02452175 Inf 1.982 1.0000
## 0.0723195 0.02222120 Inf 3.255 0.9414
## 0.0738370 0.02225718 Inf 3.317 0.9139
## 0.0742288 0.02289017 Inf 3.243 0.9458
## 0.0186693 0.02711901 Inf 0.688 1.0000
## -0.4982356 0.04588837 Inf -10.858 <.0001
## 0.0740052 0.02214156 Inf 3.342 0.9010
## 0.0732611 0.02228253 Inf 3.288 0.9278
## 0.0742288 0.02220260 Inf 3.343 0.9005
## 0.0742288 0.02226535 Inf 3.334 0.9056
## 0.0742288 0.02216329 Inf 3.349 0.8973
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0335922 0.03473164 Inf 0.967 1.0000
## 0.0742288 0.02220260 Inf 3.343 0.9005
## 0.0742288 0.02217465 Inf 3.347 0.8982
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0742288 0.02220260 Inf 3.343 0.9005
## 0.0742288 0.02226535 Inf 3.334 0.9056
## 0.0742288 0.02216329 Inf 3.349 0.8973
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0128833 0.04164872 Inf 0.309 1.0000
## 0.0723349 0.02227416 Inf 3.247 0.9441
## 0.0742288 0.02217465 Inf 3.347 0.8982
## 0.0742288 0.02213635 Inf 3.353 0.8950
## 0.0742288 0.02224065 Inf 3.338 0.9036
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0034862 0.00729794 Inf 0.478 1.0000
## 0.0026890 0.00485920 Inf 0.553 1.0000
## 0.0034862 0.00458422 Inf 0.760 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.1501495 0.02988394 Inf -5.024 0.0062
## -0.0772255 0.02346727 Inf -3.291 0.9265
## 0.0034862 0.00452894 Inf 0.770 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0034862 0.00729794 Inf 0.478 1.0000
## 0.0025649 0.00488172 Inf 0.525 1.0000
## 0.0034862 0.00458422 Inf 0.760 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.0856136 0.02194594 Inf -3.901 0.4018
## -0.0026740 0.00645596 Inf -0.414 1.0000
## 0.0034862 0.00452894 Inf 0.770 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0034862 0.00729794 Inf 0.478 1.0000
## -0.0011899 0.00561175 Inf -0.212 1.0000
## 0.0031193 0.00464174 Inf 0.672 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0005898 0.00525519 Inf 0.112 1.0000
## 0.0034862 0.00500457 Inf 0.697 1.0000
## 0.0031715 0.00457567 Inf 0.693 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.0482935 0.03185501 Inf -1.516 1.0000
## 0.0013578 0.00510683 Inf 0.266 1.0000
## 0.0034862 0.00458422 Inf 0.760 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.0032102 0.00603361 Inf -0.532 1.0000
## -0.0906531 0.02577936 Inf -3.517 0.7782
## -0.8920172 0.01905995 Inf -46.801 <.0001
## -0.6933580 0.04260654 Inf -16.274 <.0001
## 0.0034862 0.00729794 Inf 0.478 1.0000
## 0.0012303 0.00513120 Inf 0.240 1.0000
## 0.0031193 0.00464174 Inf 0.672 1.0000
## 0.0027440 0.00449196 Inf 0.611 1.0000
## 0.0030226 0.00498664 Inf 0.606 1.0000
## 0.0034862 0.00471755 Inf 0.739 1.0000
## 0.0034862 0.00500457 Inf 0.697 1.0000
## 0.0034862 0.00452894 Inf 0.770 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.0618721 0.03709139 Inf -1.668 1.0000
## 0.0034862 0.00471755 Inf 0.739 1.0000
## 0.0034862 0.00458422 Inf 0.760 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0027051 0.00485629 Inf 0.557 1.0000
## 0.0025864 0.00520071 Inf 0.497 1.0000
## 0.0005355 0.00499548 Inf 0.107 1.0000
## -0.1615248 0.03366316 Inf -4.798 0.0176
## -0.0044085 0.01132527 Inf -0.389 1.0000
## -0.0012487 0.00562380 Inf -0.222 1.0000
## -0.0181569 0.00881696 Inf -2.059 1.0000
## -0.9642339 0.00615811 Inf -156.580 <.0001
## -0.9640570 0.00741314 Inf -130.047 <.0001
## -0.0262272 0.01114646 Inf -2.353 1.0000
## -0.0217086 0.01140357 Inf -1.904 1.0000
## 0.0008229 0.00494752 Inf 0.166 1.0000
## 0.0030226 0.00498664 Inf 0.606 1.0000
## -0.3079219 0.08420537 Inf -3.657 0.6464
## -0.0180034 0.00932826 Inf -1.930 1.0000
## -0.0022522 0.00558561 Inf -0.403 1.0000
## 0.0032224 0.00442914 Inf 0.728 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.1801665 0.03268709 Inf -5.512 0.0005
## -0.0221370 0.01151319 Inf -1.923 1.0000
## 0.0015769 0.00482407 Inf 0.327 1.0000
## 0.0030943 0.00497210 Inf 0.622 1.0000
## 0.0034862 0.00729794 Inf 0.478 1.0000
## -0.0520734 0.01636271 Inf -3.182 0.9645
## -0.5689782 0.04040472 Inf -14.082 <.0001
## 0.0032626 0.00442393 Inf 0.737 1.0000
## 0.0025185 0.00509002 Inf 0.495 1.0000
## 0.0034862 0.00471755 Inf 0.739 1.0000
## 0.0034862 0.00500457 Inf 0.697 1.0000
## 0.0034862 0.00452894 Inf 0.770 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.0371505 0.02716935 Inf -1.367 1.0000
## 0.0034862 0.00471755 Inf 0.739 1.0000
## 0.0034862 0.00458422 Inf 0.760 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0034862 0.00471755 Inf 0.739 1.0000
## 0.0034862 0.00500457 Inf 0.697 1.0000
## 0.0034862 0.00452894 Inf 0.770 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## -0.0578593 0.03559529 Inf -1.625 1.0000
## 0.0015922 0.00506231 Inf 0.315 1.0000
## 0.0034862 0.00458422 Inf 0.760 1.0000
## 0.0034862 0.00439523 Inf 0.793 1.0000
## 0.0034862 0.00489351 Inf 0.712 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007972 0.00465400 Inf -0.171 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007972 0.00713955 Inf -0.112 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1536357 0.03034421 Inf -5.063 0.0052
## -0.0807117 0.02405102 Inf -3.356 0.8935
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0009213 0.00715500 Inf -0.129 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0890998 0.02256920 Inf -3.948 0.3591
## -0.0061602 0.00831259 Inf -0.741 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0007972 0.00432763 Inf 0.184 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.1528385 0.02985038 Inf -5.120 0.0039
## -0.0799145 0.02342481 Inf -3.412 0.8588
## 0.0007972 0.00426902 Inf 0.187 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## 0.0007972 0.00713955 Inf 0.112 1.0000
## -0.0001241 0.00464249 Inf -0.027 1.0000
## 0.0007972 0.00432763 Inf 0.184 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0883027 0.02190063 Inf -4.032 0.2885
## -0.0053630 0.00628048 Inf -0.854 1.0000
## 0.0007972 0.00426902 Inf 0.187 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## 0.0007972 0.00713955 Inf 0.112 1.0000
## -0.0038789 0.00540786 Inf -0.717 1.0000
## 0.0004303 0.00438888 Inf 0.098 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0020992 0.00503543 Inf -0.417 1.0000
## 0.0007972 0.00477064 Inf 0.167 1.0000
## 0.0004825 0.00431890 Inf 0.112 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0509825 0.03182314 Inf -1.602 1.0000
## -0.0013312 0.00487972 Inf -0.273 1.0000
## 0.0007972 0.00432763 Inf 0.184 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0058992 0.00584582 Inf -1.009 1.0000
## -0.0933421 0.02574082 Inf -3.626 0.6768
## -0.8947062 0.01898614 Inf -47.124 <.0001
## -0.6960470 0.04257527 Inf -16.349 <.0001
## 0.0007972 0.00713955 Inf 0.112 1.0000
## -0.0014587 0.00490533 Inf -0.297 1.0000
## 0.0004303 0.00438888 Inf 0.098 1.0000
## 0.0000550 0.00423056 Inf 0.013 1.0000
## 0.0003336 0.00475226 Inf 0.070 1.0000
## 0.0007972 0.00446862 Inf 0.178 1.0000
## 0.0007972 0.00477064 Inf 0.167 1.0000
## 0.0007972 0.00426902 Inf 0.187 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0645612 0.03706434 Inf -1.742 1.0000
## 0.0007972 0.00446862 Inf 0.178 1.0000
## 0.0007972 0.00432763 Inf 0.184 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## 0.0000161 0.00461560 Inf 0.003 1.0000
## -0.0001026 0.00497682 Inf -0.021 1.0000
## -0.0021535 0.00476380 Inf -0.452 1.0000
## -0.1642139 0.03363325 Inf -4.882 0.0121
## -0.0070975 0.01122675 Inf -0.632 1.0000
## -0.0039377 0.00542040 Inf -0.726 1.0000
## -0.0208459 0.00869504 Inf -2.397 1.0000
## -0.9669229 0.00594388 Inf -162.675 <.0001
## -0.9667460 0.00723607 Inf -133.601 <.0001
## -0.0289162 0.01105199 Inf -2.616 1.0000
## -0.0243977 0.01131034 Inf -2.157 1.0000
## -0.0018661 0.00471323 Inf -0.396 1.0000
## 0.0003336 0.00475226 Inf 0.070 1.0000
## -0.3106109 0.08419248 Inf -3.689 0.6136
## -0.0206924 0.00921306 Inf -2.246 1.0000
## -0.0049412 0.00538151 Inf -0.918 1.0000
## 0.0005333 0.00416329 Inf 0.128 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.1828555 0.03265604 Inf -5.599 0.0003
## -0.0248260 0.01142095 Inf -2.174 1.0000
## -0.0011122 0.00458277 Inf -0.243 1.0000
## 0.0004053 0.00473694 Inf 0.086 1.0000
## 0.0007972 0.00713955 Inf 0.112 1.0000
## -0.0547624 0.01630081 Inf -3.359 0.8914
## -0.5716673 0.04037367 Inf -14.159 <.0001
## 0.0005736 0.00415770 Inf 0.138 1.0000
## -0.0001705 0.00486109 Inf -0.035 1.0000
## 0.0007972 0.00446862 Inf 0.178 1.0000
## 0.0007972 0.00477064 Inf 0.167 1.0000
## 0.0007972 0.00426902 Inf 0.187 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0398395 0.02713145 Inf -1.468 1.0000
## 0.0007972 0.00446862 Inf 0.178 1.0000
## 0.0007972 0.00432763 Inf 0.184 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## 0.0007972 0.00446862 Inf 0.178 1.0000
## 0.0007972 0.00477064 Inf 0.167 1.0000
## 0.0007972 0.00426902 Inf 0.187 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## -0.0605484 0.03556702 Inf -1.702 1.0000
## -0.0010968 0.00483290 Inf -0.227 1.0000
## 0.0007972 0.00432763 Inf 0.184 1.0000
## 0.0007972 0.00412690 Inf 0.193 1.0000
## 0.0007972 0.00465400 Inf 0.171 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1536357 0.02980816 Inf -5.154 0.0033
## -0.0807117 0.02337107 Inf -3.453 0.8289
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0009213 0.00435307 Inf -0.212 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0890998 0.02184317 Inf -4.079 0.2530
## -0.0061602 0.00607078 Inf -1.015 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0046761 0.00516248 Inf -0.906 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0028964 0.00477047 Inf -0.607 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0003147 0.00400597 Inf -0.079 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0517797 0.03178342 Inf -1.629 1.0000
## -0.0021284 0.00460559 Inf -0.462 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02977968 Inf -5.159 0.0032
## -0.0807117 0.02333473 Inf -3.459 0.8248
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0009213 0.00415357 Inf -0.222 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1536357 0.02985729 Inf -5.146 0.0034
## -0.0807117 0.02343370 Inf -3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0729240 0.03761631 Inf 1.939 1.0000
## 0.1536357 0.02979971 Inf 5.156 0.0033
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1536357 0.03034421 Inf 5.063 0.0052
## 0.1527144 0.02985385 Inf 5.115 0.0040
## 0.1536357 0.02980816 Inf 5.154 0.0033
## 0.1536357 0.02977968 Inf 5.159 0.0032
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.0645359 0.03668584 Inf 1.759 1.0000
## 0.1474755 0.03014341 Inf 4.892 0.0115
## 0.1536357 0.02979971 Inf 5.156 0.0033
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1536357 0.03034421 Inf 5.063 0.0052
## 0.1489596 0.02997610 Inf 4.969 0.0081
## 0.1532688 0.02981645 Inf 5.140 0.0035
## 0.1536357 0.02977968 Inf 5.159 0.0032
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1507393 0.02991408 Inf 5.039 0.0058
## 0.1536357 0.02987569 Inf 5.143 0.0035
## 0.1533210 0.02980633 Inf 5.144 0.0035
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1018560 0.04335243 Inf 2.349 1.0000
## 0.1515073 0.02988957 Inf 5.069 0.0050
## 0.1536357 0.02980816 Inf 5.154 0.0033
## 0.1536357 0.02977968 Inf 5.159 0.0032
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1469393 0.03005503 Inf 4.889 0.0117
## 0.0594964 0.03909968 Inf 1.522 1.0000
## -0.7418677 0.03516395 Inf -21.097 <.0001
## -0.5432085 0.05183591 Inf -10.479 <.0001
## 0.1536357 0.03034421 Inf 5.063 0.0052
## 0.1513798 0.02989354 Inf 5.064 0.0051
## 0.1532688 0.02981645 Inf 5.140 0.0035
## 0.1528935 0.02979289 Inf 5.132 0.0037
## 0.1531721 0.02987193 Inf 5.128 0.0038
## 0.1536357 0.02982895 Inf 5.151 0.0034
## 0.1536357 0.02987569 Inf 5.143 0.0035
## 0.1536357 0.02979971 Inf 5.156 0.0033
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.0882774 0.04733084 Inf 1.865 1.0000
## 0.1536357 0.02982895 Inf 5.151 0.0034
## 0.1536357 0.02980816 Inf 5.154 0.0033
## 0.1536357 0.02977968 Inf 5.159 0.0032
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1528546 0.02984993 Inf 5.121 0.0039
## 0.1527359 0.02990771 Inf 5.107 0.0042
## 0.1506850 0.02986947 Inf 5.045 0.0056
## -0.0113753 0.04469588 Inf -0.255 1.0000
## 0.1457410 0.03154461 Inf 4.620 0.0377
## 0.1489008 0.02997827 Inf 4.967 0.0082
## 0.1319926 0.03071792 Inf 4.297 0.1276
## -0.8140844 0.03014604 Inf -27.005 <.0001
## -0.8139075 0.03042744 Inf -26.749 <.0001
## 0.1239223 0.03145918 Inf 3.939 0.3668
## 0.1284409 0.03155469 Inf 4.070 0.2593
## 0.1509724 0.02986193 Inf 5.056 0.0053
## 0.1531721 0.02987193 Inf 5.128 0.0038
## -0.1577724 0.08920084 Inf -1.769 1.0000
## 0.1321461 0.03086870 Inf 4.281 0.1347
## 0.1478973 0.02996967 Inf 4.935 0.0095
## 0.1533719 0.02978427 Inf 5.149 0.0034
## 0.1536357 0.02985729 Inf 5.146 0.0034
## -0.0300170 0.04396741 Inf -0.683 1.0000
## 0.1280125 0.03159413 Inf 4.052 0.2732
## 0.1517264 0.02984290 Inf 5.084 0.0047
## 0.1532438 0.02986963 Inf 5.130 0.0037
## 0.1536357 0.03034421 Inf 5.063 0.0052
## 0.0980761 0.03365036 Inf 2.915 0.9972
## -0.4188287 0.05002474 Inf -8.372 <.0001
## 0.1534121 0.02978356 Inf 5.151 0.0033
## 0.1526680 0.02988855 Inf 5.108 0.0041
## 0.1536357 0.02982895 Inf 5.151 0.0034
## 0.1536357 0.02987569 Inf 5.143 0.0035
## 0.1536357 0.02979971 Inf 5.156 0.0033
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1129990 0.04003973 Inf 2.822 0.9991
## 0.1536357 0.02982895 Inf 5.151 0.0034
## 0.1536357 0.02980816 Inf 5.154 0.0033
## 0.1536357 0.02977968 Inf 5.159 0.0032
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.1536357 0.02982895 Inf 5.151 0.0034
## 0.1536357 0.02987569 Inf 5.143 0.0035
## 0.1536357 0.02979971 Inf 5.156 0.0033
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.0922902 0.04616844 Inf 1.999 1.0000
## 0.1517417 0.02988236 Inf 5.078 0.0048
## 0.1536357 0.02980816 Inf 5.154 0.0033
## 0.1536357 0.02977968 Inf 5.159 0.0032
## 0.1536357 0.02985729 Inf 5.146 0.0034
## 0.0807117 0.02336029 Inf 3.455 0.8277
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0807117 0.02405102 Inf 3.356 0.8935
## 0.0797904 0.02342922 Inf 3.406 0.8628
## 0.0807117 0.02337107 Inf 3.453 0.8289
## 0.0807117 0.02333473 Inf 3.459 0.8248
## 0.0807117 0.02343370 Inf 3.444 0.8358
## -0.0083881 0.03167584 Inf -0.265 1.0000
## 0.0745516 0.02379655 Inf 3.133 0.9758
## 0.0807117 0.02336029 Inf 3.455 0.8277
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0807117 0.02405102 Inf 3.356 0.8935
## 0.0760356 0.02358440 Inf 3.224 0.9523
## 0.0803448 0.02338161 Inf 3.436 0.8416
## 0.0807117 0.02333473 Inf 3.459 0.8248
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0778153 0.02350571 Inf 3.310 0.9174
## 0.0807117 0.02345714 Inf 3.441 0.8383
## 0.0803970 0.02336870 Inf 3.440 0.8386
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0289320 0.03920415 Inf 0.738 1.0000
## 0.0785833 0.02347458 Inf 3.348 0.8981
## 0.0807117 0.02337107 Inf 3.453 0.8289
## 0.0807117 0.02333473 Inf 3.459 0.8248
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0740153 0.02368445 Inf 3.125 0.9773
## -0.0134276 0.03444259 Inf -0.390 1.0000
## -0.8147917 0.02990794 Inf -27.243 <.0001
## -0.6161325 0.04842375 Inf -12.724 <.0001
## 0.0807117 0.02405102 Inf 3.356 0.8935
## 0.0784558 0.02347963 Inf 3.341 0.9015
## 0.0803448 0.02338161 Inf 3.436 0.8416
## 0.0799695 0.02335151 Inf 3.425 0.8499
## 0.0802481 0.02345230 Inf 3.422 0.8518
## 0.0807117 0.02339758 Inf 3.450 0.8318
## 0.0807117 0.02345714 Inf 3.441 0.8383
## 0.0807117 0.02336029 Inf 3.455 0.8277
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0153534 0.04356291 Inf 0.352 1.0000
## 0.0807117 0.02339758 Inf 3.450 0.8318
## 0.0807117 0.02337107 Inf 3.453 0.8289
## 0.0807117 0.02333473 Inf 3.459 0.8248
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0799306 0.02342424 Inf 3.412 0.8583
## 0.0798120 0.02349780 Inf 3.397 0.8687
## 0.0777611 0.02344890 Inf 3.316 0.9146
## -0.0842993 0.04068469 Inf -2.072 1.0000
## 0.0728170 0.02554811 Inf 2.850 0.9987
## 0.0759768 0.02358715 Inf 3.221 0.9532
## 0.0590687 0.02451904 Inf 2.409 1.0000
## -0.8870084 0.02380421 Inf -37.263 <.0001
## -0.8868315 0.02415962 Inf -36.707 <.0001
## 0.0509983 0.02544113 Inf 2.005 1.0000
## 0.0555169 0.02555937 Inf 2.172 1.0000
## 0.0780484 0.02343932 Inf 3.330 0.9077
## 0.0802481 0.02345230 Inf 3.422 0.8518
## -0.2306964 0.08726055 Inf -2.644 0.9999
## 0.0592221 0.02470770 Inf 2.397 1.0000
## 0.0749734 0.02357612 Inf 3.180 0.9651
## 0.0804479 0.02334056 Inf 3.447 0.8340
## 0.0807117 0.02343370 Inf 3.444 0.8358
## -0.1029410 0.03988314 Inf -2.581 1.0000
## 0.0550885 0.02560801 Inf 2.151 1.0000
## 0.0788024 0.02341516 Inf 3.365 0.8880
## 0.0803198 0.02344937 Inf 3.425 0.8494
## 0.0807117 0.02405102 Inf 3.356 0.8935
## 0.0251521 0.02810470 Inf 0.895 1.0000
## -0.4917527 0.04647885 Inf -10.580 <.0001
## 0.0804881 0.02333966 Inf 3.449 0.8326
## 0.0797440 0.02347341 Inf 3.397 0.8683
## 0.0807117 0.02339758 Inf 3.450 0.8318
## 0.0807117 0.02345714 Inf 3.441 0.8383
## 0.0807117 0.02336029 Inf 3.455 0.8277
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0400750 0.03550673 Inf 1.129 1.0000
## 0.0807117 0.02339758 Inf 3.450 0.8318
## 0.0807117 0.02337107 Inf 3.453 0.8289
## 0.0807117 0.02333473 Inf 3.459 0.8248
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0807117 0.02339758 Inf 3.450 0.8318
## 0.0807117 0.02345714 Inf 3.441 0.8383
## 0.0807117 0.02336029 Inf 3.455 0.8277
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0193662 0.04229713 Inf 0.458 1.0000
## 0.0788177 0.02346543 Inf 3.359 0.8918
## 0.0807117 0.02337107 Inf 3.453 0.8289
## 0.0807117 0.02333473 Inf 3.459 0.8248
## 0.0807117 0.02343370 Inf 3.444 0.8358
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0009213 0.00429481 Inf -0.215 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0890998 0.02183163 Inf -4.081 0.2514
## -0.0061602 0.00602914 Inf -1.022 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0009213 0.00467766 Inf -0.197 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0009213 0.00715500 Inf -0.129 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0890998 0.02256920 Inf -3.948 0.3591
## -0.0061602 0.00831259 Inf -0.741 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0009213 0.00435307 Inf 0.212 1.0000
## 0.0009213 0.00415357 Inf 0.222 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0881786 0.02190534 Inf -4.025 0.2937
## -0.0052389 0.00629784 Inf -0.832 1.0000
## 0.0009213 0.00429481 Inf 0.215 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## 0.0009213 0.00715500 Inf 0.129 1.0000
## -0.0037548 0.00542806 Inf -0.692 1.0000
## 0.0005544 0.00441395 Inf 0.126 1.0000
## 0.0009213 0.00415357 Inf 0.222 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0019751 0.00505719 Inf -0.391 1.0000
## 0.0009213 0.00479373 Inf 0.192 1.0000
## 0.0006066 0.00434437 Inf 0.140 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0508585 0.03182642 Inf -1.598 1.0000
## -0.0012071 0.00490220 Inf -0.246 1.0000
## 0.0009213 0.00435307 Inf 0.212 1.0000
## 0.0009213 0.00415357 Inf 0.222 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0057751 0.00586445 Inf -0.985 1.0000
## -0.0932180 0.02574483 Inf -3.621 0.6820
## -0.8945821 0.01899260 Inf -47.102 <.0001
## -0.6959229 0.04257807 Inf -16.345 <.0001
## 0.0009213 0.00715500 Inf 0.129 1.0000
## -0.0013346 0.00492769 Inf -0.271 1.0000
## 0.0005544 0.00441395 Inf 0.126 1.0000
## 0.0001791 0.00425654 Inf 0.042 1.0000
## 0.0004576 0.00477542 Inf 0.096 1.0000
## 0.0009213 0.00449326 Inf 0.205 1.0000
## 0.0009213 0.00479373 Inf 0.192 1.0000
## 0.0009213 0.00429481 Inf 0.215 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0644371 0.03706714 Inf -1.738 1.0000
## 0.0009213 0.00449326 Inf 0.205 1.0000
## 0.0009213 0.00435307 Inf 0.212 1.0000
## 0.0009213 0.00415357 Inf 0.222 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## 0.0001402 0.00463942 Inf 0.030 1.0000
## 0.0000215 0.00499892 Inf 0.004 1.0000
## -0.0020294 0.00478680 Inf -0.424 1.0000
## -0.1640898 0.03363634 Inf -4.878 0.0123
## -0.0069734 0.01123645 Inf -0.621 1.0000
## -0.0038136 0.00544056 Inf -0.701 1.0000
## -0.0207218 0.00870731 Inf -2.380 1.0000
## -0.9667988 0.00596364 Inf -162.116 <.0001
## -0.9666219 0.00725232 Inf -133.285 <.0001
## -0.0287921 0.01106157 Inf -2.603 1.0000
## -0.0242736 0.01131975 Inf -2.144 1.0000
## -0.0017420 0.00473648 Inf -0.368 1.0000
## 0.0004576 0.00477542 Inf 0.096 1.0000
## -0.3104869 0.08419375 Inf -3.688 0.6152
## -0.0205683 0.00922465 Inf -2.230 1.0000
## -0.0048171 0.00540177 Inf -0.892 1.0000
## 0.0006574 0.00418971 Inf 0.157 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.1827314 0.03265923 Inf -5.595 0.0003
## -0.0247019 0.01143026 Inf -2.161 1.0000
## -0.0009881 0.00460671 Inf -0.214 1.0000
## 0.0005294 0.00476017 Inf 0.111 1.0000
## 0.0009213 0.00715500 Inf 0.129 1.0000
## -0.0546383 0.01630720 Inf -3.351 0.8965
## -0.5715432 0.04037654 Inf -14.155 <.0001
## 0.0006977 0.00418416 Inf 0.167 1.0000
## -0.0000464 0.00488371 Inf -0.010 1.0000
## 0.0009213 0.00449326 Inf 0.205 1.0000
## 0.0009213 0.00479373 Inf 0.192 1.0000
## 0.0009213 0.00429481 Inf 0.215 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0397154 0.02713532 Inf -1.464 1.0000
## 0.0009213 0.00449326 Inf 0.205 1.0000
## 0.0009213 0.00435307 Inf 0.212 1.0000
## 0.0009213 0.00415357 Inf 0.222 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## 0.0009213 0.00449326 Inf 0.205 1.0000
## 0.0009213 0.00479373 Inf 0.192 1.0000
## 0.0009213 0.00429481 Inf 0.215 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## -0.0604243 0.03556995 Inf -1.699 1.0000
## -0.0009727 0.00485561 Inf -0.200 1.0000
## 0.0009213 0.00435307 Inf 0.212 1.0000
## 0.0009213 0.00415357 Inf 0.222 1.0000
## 0.0009213 0.00467766 Inf 0.197 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0890998 0.02184317 Inf -4.079 0.2530
## -0.0061602 0.00607078 Inf -1.015 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0046761 0.00516248 Inf -0.906 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0028964 0.00477047 Inf -0.607 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## -0.0003147 0.00400597 Inf -0.079 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0517797 0.03178342 Inf -1.629 1.0000
## -0.0021284 0.00460559 Inf -0.462 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02180429 Inf -4.086 0.2478
## -0.0061602 0.00592935 Inf -1.039 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0046761 0.00499541 Inf -0.936 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0890998 0.02191016 Inf -4.067 0.2621
## -0.0061602 0.00630759 Inf -0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0829397 0.02229761 Inf 3.720 0.5826
## 0.0890998 0.02183163 Inf 4.081 0.2514
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0890998 0.02256920 Inf 3.948 0.3591
## 0.0844237 0.02207110 Inf 3.825 0.4755
## 0.0887330 0.02185443 Inf 4.060 0.2669
## 0.0890998 0.02180429 Inf 4.086 0.2478
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0862034 0.02198706 Inf 3.921 0.3837
## 0.0890998 0.02193524 Inf 4.062 0.2655
## 0.0887851 0.02184062 Inf 4.065 0.2632
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0373201 0.03831232 Inf 0.974 1.0000
## 0.0869715 0.02195381 Inf 3.962 0.3470
## 0.0890998 0.02184317 Inf 4.079 0.2530
## 0.0890998 0.02180429 Inf 4.086 0.2478
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0824034 0.02217791 Inf 3.716 0.5868
## -0.0050395 0.03342383 Inf -0.151 1.0000
## -0.8064036 0.02873151 Inf -28.067 <.0001
## -0.6077444 0.04770584 Inf -12.739 <.0001
## 0.0890998 0.02256920 Inf 3.948 0.3591
## 0.0868439 0.02195920 Inf 3.955 0.3529
## 0.0887330 0.02185443 Inf 4.060 0.2669
## 0.0883576 0.02182221 Inf 4.049 0.2753
## 0.0886362 0.02193004 Inf 4.042 0.2809
## 0.0890998 0.02187154 Inf 4.074 0.2568
## 0.0890998 0.02193524 Inf 4.062 0.2655
## 0.0890998 0.02183163 Inf 4.081 0.2514
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0237415 0.04276203 Inf 0.555 1.0000
## 0.0890998 0.02187154 Inf 4.074 0.2568
## 0.0890998 0.02184317 Inf 4.079 0.2530
## 0.0890998 0.02180429 Inf 4.086 0.2478
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0883187 0.02190002 Inf 4.033 0.2878
## 0.0882001 0.02197868 Inf 4.013 0.3036
## 0.0861492 0.02192631 Inf 3.929 0.3760
## -0.0759112 0.03982600 Inf -1.906 1.0000
## 0.0812051 0.02415804 Inf 3.361 0.8903
## 0.0843649 0.02207404 Inf 3.822 0.4787
## 0.0674568 0.02306669 Inf 2.924 0.9968
## -0.8786203 0.02230728 Inf -39.387 <.0001
## -0.8784433 0.02268616 Inf -38.722 <.0001
## 0.0593864 0.02404439 Inf 2.470 1.0000
## 0.0639050 0.02416955 Inf 2.644 0.9999
## 0.0864366 0.02191608 Inf 3.944 0.3625
## 0.0886362 0.02193004 Inf 4.042 0.2809
## -0.2223083 0.08686368 Inf -2.559 1.0000
## 0.0676103 0.02326713 Inf 2.906 0.9975
## 0.0833615 0.02206222 Inf 3.778 0.5225
## 0.0888360 0.02181051 Inf 4.073 0.2573
## 0.0890998 0.02191016 Inf 4.067 0.2621
## -0.0945529 0.03900684 Inf -2.424 1.0000
## 0.0634766 0.02422097 Inf 2.621 1.0000
## 0.0871905 0.02189026 Inf 3.983 0.3285
## 0.0887080 0.02192691 Inf 4.046 0.2779
## 0.0890998 0.02256920 Inf 3.948 0.3591
## 0.0335403 0.02684663 Inf 1.249 1.0000
## -0.4833646 0.04573010 Inf -10.570 <.0001
## 0.0888762 0.02180955 Inf 4.075 0.2558
## 0.0881321 0.02195259 Inf 4.015 0.3023
## 0.0890998 0.02187154 Inf 4.074 0.2568
## 0.0890998 0.02193524 Inf 4.062 0.2655
## 0.0890998 0.02183163 Inf 4.081 0.2514
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0484632 0.03451959 Inf 1.404 1.0000
## 0.0890998 0.02187154 Inf 4.074 0.2568
## 0.0890998 0.02184317 Inf 4.079 0.2530
## 0.0890998 0.02180429 Inf 4.086 0.2478
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0890998 0.02187154 Inf 4.074 0.2568
## 0.0890998 0.02193524 Inf 4.062 0.2655
## 0.0890998 0.02183163 Inf 4.081 0.2514
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0277543 0.04147183 Inf 0.669 1.0000
## 0.0872059 0.02194403 Inf 3.974 0.3362
## 0.0890998 0.02184317 Inf 4.079 0.2530
## 0.0890998 0.02180429 Inf 4.086 0.2478
## 0.0890998 0.02191016 Inf 4.067 0.2621
## 0.0061602 0.00602914 Inf 1.022 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## 0.0061602 0.00831259 Inf 0.741 1.0000
## 0.0014840 0.00687705 Inf 0.216 1.0000
## 0.0057933 0.00611407 Inf 0.948 1.0000
## 0.0061602 0.00592935 Inf 1.039 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## 0.0032637 0.00659035 Inf 0.495 1.0000
## 0.0061602 0.00639413 Inf 0.963 1.0000
## 0.0058455 0.00606411 Inf 0.964 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## -0.0456196 0.03209891 Inf -1.421 1.0000
## 0.0040318 0.00647314 Inf 0.623 1.0000
## 0.0061602 0.00607078 Inf 1.015 1.0000
## 0.0061602 0.00592935 Inf 1.039 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## -0.0005363 0.00722438 Inf -0.074 1.0000
## -0.0879791 0.02607936 Inf -3.374 0.8832
## -0.8893432 0.01948353 Inf -45.646 <.0001
## -0.6906841 0.04279614 Inf -16.139 <.0001
## 0.0061602 0.00831259 Inf 0.741 1.0000
## 0.0039043 0.00649230 Inf 0.601 1.0000
## 0.0057933 0.00611407 Inf 0.948 1.0000
## 0.0054179 0.00600090 Inf 0.903 1.0000
## 0.0056965 0.00637980 Inf 0.893 1.0000
## 0.0061602 0.00617208 Inf 0.998 1.0000
## 0.0061602 0.00639413 Inf 0.963 1.0000
## 0.0061602 0.00602914 Inf 1.022 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## -0.0591982 0.03730078 Inf -1.587 1.0000
## 0.0061602 0.00617208 Inf 0.998 1.0000
## 0.0061602 0.00607078 Inf 1.015 1.0000
## 0.0061602 0.00592935 Inf 1.039 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## 0.0053791 0.00627824 Inf 0.857 1.0000
## 0.0052604 0.00654822 Inf 0.803 1.0000
## 0.0032095 0.00638515 Inf 0.503 1.0000
## -0.1588509 0.03389384 Inf -4.687 0.0286
## -0.0017345 0.01200169 Inf -0.145 1.0000
## 0.0014252 0.00688685 Inf 0.207 1.0000
## -0.0154829 0.00966626 Inf -1.602 1.0000
## -0.9615599 0.00735168 Inf -130.795 <.0001
## -0.9613830 0.00843093 Inf -114.030 <.0001
## -0.0235533 0.01182818 Inf -1.991 1.0000
## -0.0190347 0.01207156 Inf -1.577 1.0000
## 0.0034969 0.00634788 Inf 0.551 1.0000
## 0.0056965 0.00637980 Inf 0.893 1.0000
## -0.3052480 0.08429873 Inf -3.621 0.6819
## -0.0153294 0.01013484 Inf -1.513 1.0000
## 0.0004218 0.00685515 Inf 0.062 1.0000
## 0.0058963 0.00595435 Inf 0.990 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## -0.1774925 0.03292482 Inf -5.391 0.0010
## -0.0194631 0.01217509 Inf -1.599 1.0000
## 0.0042508 0.00625262 Inf 0.680 1.0000
## 0.0057683 0.00636849 Inf 0.906 1.0000
## 0.0061602 0.00831259 Inf 0.741 1.0000
## -0.0493994 0.01683241 Inf -2.935 0.9964
## -0.5663043 0.04060280 Inf -13.947 <.0001
## 0.0059366 0.00595051 Inf 0.998 1.0000
## 0.0051924 0.00646061 Inf 0.804 1.0000
## 0.0061602 0.00617208 Inf 0.998 1.0000
## 0.0061602 0.00639413 Inf 0.963 1.0000
## 0.0061602 0.00602914 Inf 1.022 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## -0.0344765 0.02745540 Inf -1.256 1.0000
## 0.0061602 0.00617208 Inf 0.998 1.0000
## 0.0061602 0.00607078 Inf 1.015 1.0000
## 0.0061602 0.00592935 Inf 1.039 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## 0.0061602 0.00617208 Inf 0.998 1.0000
## 0.0061602 0.00639413 Inf 0.963 1.0000
## 0.0061602 0.00602914 Inf 1.022 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## -0.0551854 0.03581351 Inf -1.541 1.0000
## 0.0042662 0.00643821 Inf 0.663 1.0000
## 0.0061602 0.00607078 Inf 1.015 1.0000
## 0.0061602 0.00592935 Inf 1.039 1.0000
## 0.0061602 0.00630759 Inf 0.977 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0046761 0.00511346 Inf -0.914 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0028964 0.00471736 Inf -0.614 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## -0.0003147 0.00394258 Inf -0.080 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0517797 0.03177549 Inf -1.630 1.0000
## -0.0021284 0.00455056 Inf -0.468 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0066964 0.00557503 Inf -1.201 1.0000
## -0.0941393 0.02568216 Inf -3.666 0.6376
## -0.8955034 0.01889981 Inf -47.382 <.0001
## -0.6968442 0.04253736 Inf -16.382 <.0001
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0022559 0.00457805 Inf -0.493 1.0000
## -0.0003669 0.00401914 Inf -0.091 1.0000
## -0.0007422 0.00384575 Inf -0.193 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0046761 0.00543899 Inf -0.860 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0046761 0.00767437 Inf -0.609 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0028964 0.00741634 Inf -0.391 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0003147 0.00694928 Inf -0.045 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0517797 0.03228669 Inf -1.604 1.0000
## -0.0021284 0.00731138 Inf -0.291 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0066964 0.00798934 Inf -0.838 1.0000
## -0.0941393 0.02631201 Inf -3.578 0.7232
## -0.8955034 0.01974718 Inf -45.348 <.0001
## -0.6968442 0.04292058 Inf -16.236 <.0001
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0043092 0.00521349 Inf 0.827 1.0000
## 0.0046761 0.00499541 Inf 0.936 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## 0.0017797 0.00576564 Inf 0.309 1.0000
## 0.0046761 0.00553912 Inf 0.844 1.0000
## 0.0043614 0.00515478 Inf 0.846 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## -0.0471036 0.03194164 Inf -1.475 1.0000
## 0.0025477 0.00563098 Inf 0.452 1.0000
## 0.0046761 0.00516248 Inf 0.906 1.0000
## 0.0046761 0.00499541 Inf 0.936 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## -0.0020203 0.00648206 Inf -0.312 1.0000
## -0.0894632 0.02588598 Inf -3.456 0.8270
## -0.8908273 0.01921297 Inf -46.366 <.0001
## -0.6921681 0.04267451 Inf -16.220 <.0001
## 0.0046761 0.00767437 Inf 0.609 1.0000
## 0.0024202 0.00565305 Inf 0.428 1.0000
## 0.0043092 0.00521349 Inf 0.827 1.0000
## 0.0039339 0.00508046 Inf 0.774 1.0000
## 0.0042125 0.00552277 Inf 0.763 1.0000
## 0.0046761 0.00528123 Inf 0.885 1.0000
## 0.0046761 0.00553912 Inf 0.844 1.0000
## 0.0046761 0.00511346 Inf 0.914 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## -0.0606822 0.03716569 Inf -1.633 1.0000
## 0.0046761 0.00528123 Inf 0.885 1.0000
## 0.0046761 0.00516248 Inf 0.906 1.0000
## 0.0046761 0.00499541 Inf 0.936 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## 0.0038950 0.00540525 Inf 0.721 1.0000
## 0.0037764 0.00571666 Inf 0.661 1.0000
## 0.0017255 0.00552993 Inf 0.312 1.0000
## -0.1603349 0.03374506 Inf -4.751 0.0217
## -0.0032186 0.01157024 Inf -0.278 1.0000
## -0.0000588 0.00610297 Inf -0.010 1.0000
## -0.0169669 0.00912748 Inf -1.859 1.0000
## -0.9630440 0.00660968 Inf -145.702 <.0001
## -0.9628671 0.00779234 Inf -123.566 <.0001
## -0.0250373 0.01139297 Inf -2.198 1.0000
## -0.0205187 0.01164499 Inf -1.762 1.0000
## 0.0020128 0.00548674 Inf 0.367 1.0000
## 0.0042125 0.00552277 Inf 0.763 1.0000
## -0.3067320 0.08423854 Inf -3.641 0.6620
## -0.0168135 0.00962231 Inf -1.747 1.0000
## -0.0010622 0.00606751 Inf -0.175 1.0000
## 0.0044123 0.00502518 Inf 0.878 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## -0.1789766 0.03277152 Inf -5.461 0.0007
## -0.0209471 0.01175233 Inf -1.782 1.0000
## 0.0027668 0.00537594 Inf 0.515 1.0000
## 0.0042842 0.00550967 Inf 0.778 1.0000
## 0.0046761 0.00767437 Inf 0.609 1.0000
## -0.0508835 0.01653065 Inf -3.078 0.9848
## -0.5677883 0.04047556 Inf -14.028 <.0001
## 0.0044525 0.00502061 Inf 0.887 1.0000
## 0.0037084 0.00561612 Inf 0.660 1.0000
## 0.0046761 0.00528123 Inf 0.885 1.0000
## 0.0046761 0.00553912 Inf 0.844 1.0000
## 0.0046761 0.00511346 Inf 0.914 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## -0.0359606 0.02727110 Inf -1.319 1.0000
## 0.0046761 0.00528123 Inf 0.885 1.0000
## 0.0046761 0.00516248 Inf 0.906 1.0000
## 0.0046761 0.00499541 Inf 0.936 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## 0.0046761 0.00528123 Inf 0.885 1.0000
## 0.0046761 0.00553912 Inf 0.844 1.0000
## 0.0046761 0.00511346 Inf 0.914 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## -0.0566694 0.03567275 Inf -1.589 1.0000
## 0.0027821 0.00559071 Inf 0.498 1.0000
## 0.0046761 0.00516248 Inf 0.906 1.0000
## 0.0046761 0.00499541 Inf 0.936 1.0000
## 0.0046761 0.00543899 Inf 0.860 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0025295 0.00482583 Inf -0.524 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0000522 0.00407214 Inf 0.013 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0514129 0.03179125 Inf -1.617 1.0000
## -0.0017615 0.00466301 Inf -0.378 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0063295 0.00566672 Inf -1.117 1.0000
## -0.0937724 0.02570154 Inf -3.649 0.6547
## -0.8951365 0.01892923 Inf -47.289 <.0001
## -0.6964773 0.04255020 Inf -16.368 <.0001
## 0.0003669 0.00699300 Inf 0.052 1.0000
## -0.0018890 0.00468983 Inf -0.403 1.0000
## 0.0000000 0.00414630 Inf 0.000 1.0000
## -0.0003753 0.00397840 Inf -0.094 1.0000
## -0.0000968 0.00452919 Inf -0.021 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0003669 0.00401914 Inf 0.091 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0649915 0.03703702 Inf -1.755 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0004142 0.00438564 Inf -0.094 1.0000
## -0.0005329 0.00476434 Inf -0.112 1.0000
## -0.0025838 0.00454170 Inf -0.569 1.0000
## -0.1646442 0.03360312 Inf -4.900 0.0112
## -0.0075278 0.01113462 Inf -0.676 1.0000
## -0.0043680 0.00522651 Inf -0.836 1.0000
## -0.0212762 0.00857658 Inf -2.481 1.0000
## -0.9673532 0.00576263 Inf -167.867 <.0001
## -0.9671763 0.00708792 Inf -136.454 <.0001
## -0.0293465 0.01095932 Inf -2.678 0.9999
## -0.0248280 0.01121967 Inf -2.213 1.0000
## -0.0022964 0.00448858 Inf -0.512 1.0000
## -0.0000968 0.00452919 Inf -0.021 1.0000
## -0.3110413 0.08418029 Inf -3.695 0.6079
## -0.0211227 0.00910134 Inf -2.321 1.0000
## -0.0053715 0.00518629 Inf -1.036 1.0000
## 0.0001030 0.00390670 Inf 0.026 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.1832858 0.03262497 Inf -5.618 0.0003
## -0.0252563 0.01133118 Inf -2.229 1.0000
## -0.0015425 0.00435126 Inf -0.354 1.0000
## -0.0000250 0.00451310 Inf -0.006 1.0000
## 0.0003669 0.00699300 Inf 0.052 1.0000
## -0.0551927 0.01623852 Inf -3.399 0.8672
## -0.5720976 0.04034756 Inf -14.179 <.0001
## 0.0001433 0.00390074 Inf 0.037 1.0000
## -0.0006008 0.00464334 Inf -0.129 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0003669 0.00401914 Inf 0.091 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0402698 0.02709395 Inf -1.486 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0003669 0.00401914 Inf 0.091 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0609787 0.03553854 Inf -1.716 1.0000
## -0.0015271 0.00461396 Inf -0.331 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00458914 Inf -0.631 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## -0.0003147 0.00378823 Inf -0.083 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0517797 0.03175671 Inf -1.631 1.0000
## -0.0021284 0.00441750 Inf -0.482 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0028964 0.00506840 Inf -0.571 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0003147 0.00435650 Inf -0.072 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0028964 0.00517571 Inf 0.560 1.0000
## 0.0025817 0.00476231 Inf 0.542 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.0488833 0.03188320 Inf -1.533 1.0000
## 0.0007680 0.00527503 Inf 0.146 1.0000
## 0.0028964 0.00477047 Inf 0.607 1.0000
## 0.0028964 0.00458914 Inf 0.631 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.0038000 0.00617727 Inf -0.615 1.0000
## -0.0912429 0.02581438 Inf -3.535 0.7625
## -0.8926070 0.01910268 Inf -46.727 <.0001
## -0.6939478 0.04262604 Inf -16.280 <.0001
## 0.0028964 0.00741634 Inf 0.391 1.0000
## 0.0006405 0.00529865 Inf 0.121 1.0000
## 0.0025295 0.00482583 Inf 0.524 1.0000
## 0.0021542 0.00468203 Inf 0.460 1.0000
## 0.0024328 0.00515846 Inf 0.472 1.0000
## 0.0028964 0.00489873 Inf 0.591 1.0000
## 0.0028964 0.00517571 Inf 0.560 1.0000
## 0.0028964 0.00471736 Inf 0.614 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.0624619 0.03711568 Inf -1.683 1.0000
## 0.0028964 0.00489873 Inf 0.591 1.0000
## 0.0028964 0.00477047 Inf 0.607 1.0000
## 0.0028964 0.00458914 Inf 0.631 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## 0.0021153 0.00503262 Inf 0.420 1.0000
## 0.0019967 0.00536576 Inf 0.372 1.0000
## -0.0000542 0.00516745 Inf -0.010 1.0000
## -0.1621146 0.03368990 Inf -4.812 0.0166
## -0.0049983 0.01140254 Inf -0.438 1.0000
## -0.0018385 0.00577737 Inf -0.318 1.0000
## -0.0187466 0.00891703 Inf -2.102 1.0000
## -0.9648237 0.00629278 Inf -153.322 <.0001
## -0.9646468 0.00752536 Inf -128.186 <.0001
## -0.0268170 0.01122615 Inf -2.389 1.0000
## -0.0222984 0.01148128 Inf -1.942 1.0000
## 0.0002331 0.00512106 Inf 0.046 1.0000
## 0.0024328 0.00515846 Inf 0.472 1.0000
## -0.3085117 0.08421586 Inf -3.663 0.6399
## -0.0185932 0.00942289 Inf -1.973 1.0000
## -0.0028419 0.00574035 Inf -0.495 1.0000
## 0.0026326 0.00462169 Inf 0.570 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.1807563 0.03271457 Inf -5.525 0.0005
## -0.0227268 0.01159019 Inf -1.961 1.0000
## 0.0009871 0.00500175 Inf 0.197 1.0000
## 0.0025045 0.00514439 Inf 0.487 1.0000
## 0.0028964 0.00741634 Inf 0.391 1.0000
## -0.0526632 0.01641759 Inf -3.208 0.9574
## -0.5695680 0.04042569 Inf -14.089 <.0001
## 0.0026728 0.00461669 Inf 0.579 1.0000
## 0.0019287 0.00525856 Inf 0.367 1.0000
## 0.0028964 0.00489873 Inf 0.591 1.0000
## 0.0028964 0.00517571 Inf 0.560 1.0000
## 0.0028964 0.00471736 Inf 0.614 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.0377403 0.02720229 Inf -1.387 1.0000
## 0.0028964 0.00489873 Inf 0.591 1.0000
## 0.0028964 0.00477047 Inf 0.607 1.0000
## 0.0028964 0.00458914 Inf 0.631 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## 0.0028964 0.00489873 Inf 0.591 1.0000
## 0.0028964 0.00517571 Inf 0.560 1.0000
## 0.0028964 0.00471736 Inf 0.614 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.0584491 0.03562058 Inf -1.641 1.0000
## 0.0010024 0.00523190 Inf 0.192 1.0000
## 0.0028964 0.00477047 Inf 0.607 1.0000
## 0.0028964 0.00458914 Inf 0.631 1.0000
## 0.0028964 0.00506840 Inf 0.571 1.0000
## -0.0003147 0.00448089 Inf -0.070 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0517797 0.03184676 Inf -1.626 1.0000
## -0.0021284 0.00502415 Inf -0.424 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0066964 0.00596786 Inf -1.122 1.0000
## -0.0941393 0.02577029 Inf -3.653 0.6502
## -0.8955034 0.01901939 Inf -47.084 <.0001
## -0.6968442 0.04259063 Inf -16.361 <.0001
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0022559 0.00504906 Inf -0.447 1.0000
## -0.0003669 0.00454840 Inf -0.081 1.0000
## -0.0007422 0.00439594 Inf -0.169 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0653583 0.03708472 Inf -1.762 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0007811 0.00476765 Inf -0.164 1.0000
## -0.0008997 0.00511818 Inf -0.176 1.0000
## -0.0029507 0.00491185 Inf -0.601 1.0000
## -0.1650110 0.03365568 Inf -4.903 0.0110
## -0.0078947 0.01129091 Inf -0.699 1.0000
## -0.0047349 0.00555138 Inf -0.853 1.0000
## -0.0216431 0.00877924 Inf -2.465 1.0000
## -0.9677201 0.00605474 Inf -159.829 <.0001
## -0.9675432 0.00732738 Inf -132.045 <.0001
## -0.0297134 0.01111888 Inf -2.672 0.9999
## -0.0251948 0.01137544 Inf -2.215 1.0000
## -0.0026633 0.00486274 Inf -0.548 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## -0.3114081 0.08420115 Inf -3.698 0.6044
## -0.0214896 0.00929256 Inf -2.313 1.0000
## -0.0057384 0.00551363 Inf -1.041 1.0000
## -0.0002638 0.00433108 Inf -0.061 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1836527 0.03267906 Inf -5.620 0.0003
## -0.0256232 0.01148545 Inf -2.231 1.0000
## -0.0019093 0.00473620 Inf -0.403 1.0000
## -0.0003919 0.00488510 Inf -0.080 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0555596 0.01634696 Inf -3.399 0.8673
## -0.5724644 0.04039047 Inf -14.173 <.0001
## -0.0002236 0.00432570 Inf -0.052 1.0000
## -0.0009677 0.00500574 Inf -0.193 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0514650 0.03178175 Inf -1.619 1.0000
## -0.0018137 0.00459723 Inf -0.395 1.0000
## 0.0003147 0.00400597 Inf 0.079 1.0000
## 0.0003147 0.00378823 Inf 0.083 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0063817 0.00561278 Inf -1.137 1.0000
## -0.0938246 0.02568979 Inf -3.652 0.6510
## -0.8951887 0.01891285 Inf -47.332 <.0001
## -0.6965295 0.04254295 Inf -16.372 <.0001
## 0.0003147 0.00694928 Inf 0.045 1.0000
## -0.0019412 0.00462443 Inf -0.420 1.0000
## -0.0000522 0.00407214 Inf -0.013 1.0000
## -0.0004275 0.00390105 Inf -0.110 1.0000
## -0.0001489 0.00446141 Inf -0.033 1.0000
## 0.0003147 0.00415788 Inf 0.076 1.0000
## 0.0003147 0.00448089 Inf 0.070 1.0000
## 0.0003147 0.00394258 Inf 0.080 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0650437 0.03702886 Inf -1.757 1.0000
## 0.0003147 0.00415788 Inf 0.076 1.0000
## 0.0003147 0.00400597 Inf 0.079 1.0000
## 0.0003147 0.00378823 Inf 0.083 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0004664 0.00431560 Inf -0.108 1.0000
## -0.0005851 0.00469996 Inf -0.124 1.0000
## -0.0026360 0.00447414 Inf -0.589 1.0000
## -0.1646964 0.03359414 Inf -4.903 0.0110
## -0.0075800 0.01110727 Inf -0.682 1.0000
## -0.0044202 0.00516794 Inf -0.855 1.0000
## -0.0213284 0.00854115 Inf -2.497 1.0000
## -0.9674054 0.00570895 Inf -169.454 <.0001
## -0.9672285 0.00704435 Inf -137.306 <.0001
## -0.0293987 0.01093165 Inf -2.689 0.9999
## -0.0248801 0.01119262 Inf -2.223 1.0000
## -0.0023486 0.00442021 Inf -0.531 1.0000
## -0.0001489 0.00446141 Inf -0.033 1.0000
## -0.3110934 0.08417668 Inf -3.696 0.6071
## -0.0211749 0.00906796 Inf -2.335 1.0000
## -0.0054237 0.00512728 Inf -1.058 1.0000
## 0.0000509 0.00382789 Inf 0.013 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.1833380 0.03261570 Inf -5.621 0.0003
## -0.0253085 0.01130440 Inf -2.239 1.0000
## -0.0015947 0.00428069 Inf -0.373 1.0000
## -0.0000772 0.00444506 Inf -0.017 1.0000
## 0.0003147 0.00694928 Inf 0.045 1.0000
## -0.0552449 0.01621990 Inf -3.406 0.8626
## -0.5721498 0.04033995 Inf -14.183 <.0001
## 0.0000911 0.00382181 Inf 0.024 1.0000
## -0.0006530 0.00457725 Inf -0.143 1.0000
## 0.0003147 0.00415788 Inf 0.076 1.0000
## 0.0003147 0.00448089 Inf 0.070 1.0000
## 0.0003147 0.00394258 Inf 0.080 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0403220 0.02708279 Inf -1.489 1.0000
## 0.0003147 0.00415788 Inf 0.076 1.0000
## 0.0003147 0.00400597 Inf 0.079 1.0000
## 0.0003147 0.00378823 Inf 0.083 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## 0.0003147 0.00415788 Inf 0.076 1.0000
## 0.0003147 0.00448089 Inf 0.070 1.0000
## 0.0003147 0.00394258 Inf 0.080 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0610309 0.03553004 Inf -1.718 1.0000
## -0.0015793 0.00454746 Inf -0.347 1.0000
## 0.0003147 0.00400597 Inf 0.079 1.0000
## 0.0003147 0.00378823 Inf 0.083 1.0000
## 0.0003147 0.00435650 Inf 0.072 1.0000
## -0.0517797 0.03182950 Inf -1.627 1.0000
## -0.0021284 0.00491353 Inf -0.433 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0496513 0.03186010 Inf 1.558 1.0000
## 0.0517797 0.03178342 Inf 1.629 1.0000
## 0.0517797 0.03175671 Inf 1.631 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## 0.0450833 0.03201600 Inf 1.408 1.0000
## -0.0423596 0.04062967 Inf -1.043 1.0000
## -0.8437237 0.03684562 Inf -22.899 <.0001
## -0.6450645 0.05299258 Inf -12.173 <.0001
## 0.0517797 0.03228669 Inf 1.604 1.0000
## 0.0495238 0.03186384 Inf 1.554 1.0000
## 0.0514129 0.03179125 Inf 1.617 1.0000
## 0.0510375 0.03176921 Inf 1.607 1.0000
## 0.0513161 0.03184330 Inf 1.612 1.0000
## 0.0517797 0.03180292 Inf 1.628 1.0000
## 0.0517797 0.03184676 Inf 1.626 1.0000
## 0.0517797 0.03177549 Inf 1.630 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## -0.0135786 0.04860217 Inf -0.279 1.0000
## 0.0517797 0.03180292 Inf 1.628 1.0000
## 0.0517797 0.03178342 Inf 1.629 1.0000
## 0.0517797 0.03175671 Inf 1.631 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## 0.0509986 0.03182272 Inf 1.603 1.0000
## 0.0508800 0.03187693 Inf 1.596 1.0000
## 0.0488291 0.03184136 Inf 1.534 1.0000
## -0.1132313 0.04603995 Inf -2.459 1.0000
## 0.0438850 0.03341844 Inf 1.313 1.0000
## 0.0470448 0.03194369 Inf 1.473 1.0000
## 0.0301367 0.03264067 Inf 0.923 1.0000
## -0.9159404 0.03209537 Inf -28.538 <.0001
## -0.9157635 0.03235981 Inf -28.299 <.0001
## 0.0220663 0.03333982 Inf 0.662 1.0000
## 0.0265849 0.03342964 Inf 0.795 1.0000
## 0.0491165 0.03183424 Inf 1.543 1.0000
## 0.0513161 0.03184330 Inf 1.612 1.0000
## -0.2596284 0.08988089 Inf -2.889 0.9979
## 0.0302902 0.03278260 Inf 0.924 1.0000
## 0.0460414 0.03193575 Inf 1.442 1.0000
## 0.0515159 0.03176105 Inf 1.622 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## -0.1318730 0.04533289 Inf -2.909 0.9974
## 0.0261565 0.03346689 Inf 0.782 1.0000
## 0.0498704 0.03181629 Inf 1.567 1.0000
## 0.0513878 0.03184113 Inf 1.614 1.0000
## 0.0517797 0.03228669 Inf 1.604 1.0000
## -0.0037799 0.03541599 Inf -0.107 1.0000
## -0.5206847 0.05122397 Inf -10.165 <.0001
## 0.0515561 0.03176038 Inf 1.623 1.0000
## 0.0508120 0.03185897 Inf 1.595 1.0000
## 0.0517797 0.03180292 Inf 1.628 1.0000
## 0.0517797 0.03184676 Inf 1.626 1.0000
## 0.0517797 0.03177549 Inf 1.630 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## 0.0111430 0.04153415 Inf 0.268 1.0000
## 0.0517797 0.03180292 Inf 1.628 1.0000
## 0.0517797 0.03178342 Inf 1.629 1.0000
## 0.0517797 0.03175671 Inf 1.631 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## 0.0517797 0.03180292 Inf 1.628 1.0000
## 0.0517797 0.03184676 Inf 1.626 1.0000
## 0.0517797 0.03177549 Inf 1.630 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## -0.0095658 0.04747085 Inf -0.202 1.0000
## 0.0498857 0.03185330 Inf 1.566 1.0000
## 0.0517797 0.03178342 Inf 1.629 1.0000
## 0.0517797 0.03175671 Inf 1.631 1.0000
## 0.0517797 0.03182950 Inf 1.627 1.0000
## 0.0021284 0.00460559 Inf 0.462 1.0000
## 0.0021284 0.00441750 Inf 0.482 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## -0.0045680 0.00605216 Inf -0.755 1.0000
## -0.0920109 0.02578607 Inf -3.568 0.7321
## -0.8933750 0.01905830 Inf -46.876 <.0001
## -0.6947158 0.04260665 Inf -16.305 <.0001
## 0.0021284 0.00731138 Inf 0.291 1.0000
## -0.0001275 0.00515125 Inf -0.025 1.0000
## 0.0017615 0.00466301 Inf 0.378 1.0000
## 0.0013862 0.00451413 Inf 0.307 1.0000
## 0.0016648 0.00500649 Inf 0.333 1.0000
## 0.0021284 0.00473831 Inf 0.449 1.0000
## 0.0021284 0.00502415 Inf 0.424 1.0000
## 0.0021284 0.00455056 Inf 0.468 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## -0.0632300 0.03709592 Inf -1.704 1.0000
## 0.0021284 0.00473831 Inf 0.449 1.0000
## 0.0021284 0.00460559 Inf 0.462 1.0000
## 0.0021284 0.00441750 Inf 0.482 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## 0.0013473 0.00487681 Inf 0.276 1.0000
## 0.0012286 0.00521994 Inf 0.235 1.0000
## -0.0008223 0.00501637 Inf -0.164 1.0000
## -0.1628827 0.03366810 Inf -4.838 0.0148
## -0.0057663 0.01133536 Inf -0.509 1.0000
## -0.0026065 0.00564301 Inf -0.462 1.0000
## -0.0195147 0.00883236 Inf -2.209 1.0000
## -0.9655917 0.00616170 Inf -156.709 <.0001
## -0.9654148 0.00741608 Inf -130.179 <.0001
## -0.0275850 0.01115949 Inf -2.472 1.0000
## -0.0230665 0.01141586 Inf -2.021 1.0000
## -0.0005349 0.00496849 Inf -0.108 1.0000
## 0.0016648 0.00500649 Inf 0.333 1.0000
## -0.3092797 0.08420688 Inf -3.673 0.6303
## -0.0193612 0.00934279 Inf -2.072 1.0000
## -0.0036100 0.00560530 Inf -0.644 1.0000
## 0.0018645 0.00445138 Inf 0.419 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## -0.1815243 0.03269205 Inf -5.553 0.0004
## -0.0234948 0.01152541 Inf -2.039 1.0000
## 0.0002190 0.00484524 Inf 0.045 1.0000
## 0.0017365 0.00499198 Inf 0.348 1.0000
## 0.0021284 0.00731138 Inf 0.291 1.0000
## -0.0534312 0.01637273 Inf -3.263 0.9380
## -0.5703361 0.04040579 Inf -14.115 <.0001
## 0.0019048 0.00444618 Inf 0.428 1.0000
## 0.0011607 0.00510969 Inf 0.227 1.0000
## 0.0021284 0.00473831 Inf 0.449 1.0000
## 0.0021284 0.00502415 Inf 0.424 1.0000
## 0.0021284 0.00455056 Inf 0.468 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## -0.0385083 0.02717505 Inf -1.417 1.0000
## 0.0021284 0.00473831 Inf 0.449 1.0000
## 0.0021284 0.00460559 Inf 0.462 1.0000
## 0.0021284 0.00441750 Inf 0.482 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## 0.0021284 0.00473831 Inf 0.449 1.0000
## 0.0021284 0.00502415 Inf 0.424 1.0000
## 0.0021284 0.00455056 Inf 0.468 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## -0.0592172 0.03559997 Inf -1.663 1.0000
## 0.0002344 0.00508248 Inf 0.046 1.0000
## 0.0021284 0.00460559 Inf 0.462 1.0000
## 0.0021284 0.00441750 Inf 0.482 1.0000
## 0.0021284 0.00491353 Inf 0.433 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0066964 0.00562004 Inf -1.192 1.0000
## -0.0941393 0.02569196 Inf -3.664 0.6391
## -0.8955034 0.01891313 Inf -47.348 <.0001
## -0.6968442 0.04254329 Inf -16.380 <.0001
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0022559 0.00463275 Inf -0.487 1.0000
## -0.0003669 0.00408134 Inf -0.090 1.0000
## -0.0007422 0.00391071 Inf -0.190 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0653583 0.03703034 Inf -1.765 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00546696 Inf -1.225 1.0000
## -0.0941393 0.02565891 Inf -3.669 0.6343
## -0.8955034 0.01886821 Inf -47.461 <.0001
## -0.6968442 0.04252334 Inf -16.387 <.0001
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0022559 0.00444582 Inf -0.507 1.0000
## -0.0003669 0.00386784 Inf -0.095 1.0000
## -0.0007422 0.00368735 Inf -0.201 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0653583 0.03700741 Inf -1.766 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0066964 0.00587504 Inf -1.140 1.0000
## -0.0941393 0.02574895 Inf -3.656 0.6472
## -0.8955034 0.01899047 Inf -47.155 <.0001
## -0.6968442 0.04257772 Inf -16.366 <.0001
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0022559 0.00493900 Inf -0.457 1.0000
## -0.0003669 0.00442591 Inf -0.083 1.0000
## -0.0007422 0.00426907 Inf -0.174 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0874429 0.02597709 Inf -3.366 0.8875
## -0.8888070 0.01935025 Inf -45.933 <.0001
## -0.6901478 0.04273532 Inf -16.149 <.0001
## 0.0066964 0.00798934 Inf 0.838 1.0000
## 0.0044405 0.00607264 Inf 0.731 1.0000
## 0.0063295 0.00566672 Inf 1.117 1.0000
## 0.0059542 0.00554437 Inf 1.074 1.0000
## 0.0062328 0.00595245 Inf 1.047 1.0000
## 0.0066964 0.00572931 Inf 1.169 1.0000
## 0.0066964 0.00596786 Inf 1.122 1.0000
## 0.0066964 0.00557503 Inf 1.201 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## -0.0586619 0.03722940 Inf -1.576 1.0000
## 0.0066964 0.00572931 Inf 1.169 1.0000
## 0.0066964 0.00562004 Inf 1.192 1.0000
## 0.0066964 0.00546696 Inf 1.225 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## 0.0059153 0.00584341 Inf 1.012 1.0000
## 0.0057967 0.00613255 Inf 0.945 1.0000
## 0.0037458 0.00595785 Inf 0.629 1.0000
## -0.1583146 0.03381528 Inf -4.682 0.0292
## -0.0011983 0.01177961 Inf -0.102 1.0000
## 0.0019615 0.00649245 Inf 0.302 1.0000
## -0.0149466 0.00938827 Inf -1.592 1.0000
## -0.9610237 0.00698805 Inf -137.524 <.0001
## -0.9608468 0.00811582 Inf -118.392 <.0001
## -0.0230170 0.01160182 Inf -1.984 1.0000
## -0.0184984 0.01185000 Inf -1.561 1.0000
## 0.0040331 0.00591792 Inf 0.682 1.0000
## 0.0062328 0.00595245 Inf 1.047 1.0000
## -0.3047117 0.08426734 Inf -3.616 0.6867
## -0.0147931 0.00987007 Inf -1.499 1.0000
## 0.0009581 0.00645870 Inf 0.148 1.0000
## 0.0064326 0.00549403 Inf 1.171 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## -0.1769563 0.03284399 Inf -5.388 0.0010
## -0.0189268 0.01195543 Inf -1.583 1.0000
## 0.0047871 0.00581573 Inf 0.823 1.0000
## 0.0063045 0.00594033 Inf 1.061 1.0000
## 0.0066964 0.00798934 Inf 0.838 1.0000
## -0.0488632 0.01667371 Inf -2.931 0.9966
## -0.5657680 0.04053835 Inf -13.956 <.0001
## 0.0064728 0.00548987 Inf 1.179 1.0000
## 0.0057287 0.00603891 Inf 0.949 1.0000
## 0.0066964 0.00572931 Inf 1.169 1.0000
## 0.0066964 0.00596786 Inf 1.122 1.0000
## 0.0066964 0.00557503 Inf 1.201 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## -0.0339403 0.02735851 Inf -1.241 1.0000
## 0.0066964 0.00572931 Inf 1.169 1.0000
## 0.0066964 0.00562004 Inf 1.192 1.0000
## 0.0066964 0.00546696 Inf 1.225 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## 0.0066964 0.00572931 Inf 1.169 1.0000
## 0.0066964 0.00596786 Inf 1.122 1.0000
## 0.0066964 0.00557503 Inf 1.201 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## -0.0546491 0.03573917 Inf -1.529 1.0000
## 0.0048024 0.00601482 Inf 0.798 1.0000
## 0.0066964 0.00562004 Inf 1.192 1.0000
## 0.0066964 0.00546696 Inf 1.225 1.0000
## 0.0066964 0.00587504 Inf 1.140 1.0000
## -0.8013641 0.03175669 Inf -25.234 <.0001
## -0.6027049 0.04958655 Inf -12.155 <.0001
## 0.0941393 0.02631201 Inf 3.578 0.7232
## 0.0918834 0.02579066 Inf 3.563 0.7372
## 0.0937724 0.02570154 Inf 3.649 0.6547
## 0.0933971 0.02567414 Inf 3.638 0.6654
## 0.0936757 0.02576586 Inf 3.636 0.6675
## 0.0941393 0.02571609 Inf 3.661 0.6425
## 0.0941393 0.02577029 Inf 3.653 0.6502
## 0.0941393 0.02568216 Inf 3.666 0.6376
## 0.0941393 0.02574895 Inf 3.656 0.6472
## 0.0287809 0.04485004 Inf 0.642 1.0000
## 0.0941393 0.02571609 Inf 3.661 0.6425
## 0.0941393 0.02569196 Inf 3.664 0.6391
## 0.0941393 0.02565891 Inf 3.669 0.6343
## 0.0941393 0.02574895 Inf 3.656 0.6472
## 0.0933582 0.02574031 Inf 3.627 0.6761
## 0.0932395 0.02580727 Inf 3.613 0.6898
## 0.0911886 0.02576266 Inf 3.540 0.7581
## -0.0708718 0.04206002 Inf -1.685 1.0000
## 0.0862446 0.02768681 Inf 3.115 0.9791
## 0.0894044 0.02588848 Inf 3.453 0.8289
## 0.0724962 0.02673977 Inf 2.711 0.9998
## -0.8735808 0.02608809 Inf -33.486 <.0001
## -0.8734039 0.02641279 Inf -33.067 <.0001
## 0.0644259 0.02758755 Inf 2.335 1.0000
## 0.0689445 0.02769673 Inf 2.489 1.0000
## 0.0914760 0.02575395 Inf 3.552 0.7470
## 0.0936757 0.02576586 Inf 3.636 0.6675
## -0.2172688 0.08791043 Inf -2.471 1.0000
## 0.0726497 0.02691286 Inf 2.699 0.9999
## 0.0884009 0.02587840 Inf 3.416 0.8558
## 0.0938755 0.02566420 Inf 3.658 0.6454
## 0.0941393 0.02574895 Inf 3.656 0.6472
## -0.0895134 0.04128522 Inf -2.168 1.0000
## 0.0685161 0.02774161 Inf 2.470 1.0000
## 0.0922299 0.02573200 Inf 3.584 0.7172
## 0.0937474 0.02576320 Inf 3.639 0.6644
## 0.0941393 0.02631201 Inf 3.578 0.7232
## 0.0385797 0.03006122 Inf 1.283 1.0000
## -0.4783252 0.04768867 Inf -10.030 <.0001
## 0.0939157 0.02566339 Inf 3.660 0.6437
## 0.0931716 0.02578505 Inf 3.613 0.6893
## 0.0941393 0.02571609 Inf 3.661 0.6425
## 0.0941393 0.02577029 Inf 3.653 0.6502
## 0.0941393 0.02568216 Inf 3.666 0.6376
## 0.0941393 0.02574895 Inf 3.656 0.6472
## 0.0535026 0.03707479 Inf 1.443 1.0000
## 0.0941393 0.02571609 Inf 3.661 0.6425
## 0.0941393 0.02569196 Inf 3.664 0.6391
## 0.0941393 0.02565891 Inf 3.669 0.6343
## 0.0941393 0.02574895 Inf 3.656 0.6472
## 0.0941393 0.02571609 Inf 3.661 0.6425
## 0.0941393 0.02577029 Inf 3.653 0.6502
## 0.0941393 0.02568216 Inf 3.666 0.6376
## 0.0941393 0.02574895 Inf 3.656 0.6472
## 0.0327937 0.04362164 Inf 0.752 1.0000
## 0.0922453 0.02577775 Inf 3.578 0.7226
## 0.0941393 0.02569196 Inf 3.664 0.6391
## 0.0941393 0.02565891 Inf 3.669 0.6343
## 0.0941393 0.02574895 Inf 3.656 0.6472
## 0.1986592 0.04629222 Inf 4.291 0.1300
## 0.8955034 0.01974718 Inf 45.348 <.0001
## 0.8932475 0.01906553 Inf 46.851 <.0001
## 0.8951365 0.01892923 Inf 47.289 <.0001
## 0.8947612 0.01889517 Inf 47.354 <.0001
## 0.8950398 0.01901729 Inf 47.065 <.0001
## 0.8955034 0.01894589 Inf 47.266 <.0001
## 0.8955034 0.01901939 Inf 47.084 <.0001
## 0.8955034 0.01889981 Inf 47.382 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.8301451 0.04146307 Inf 20.021 <.0001
## 0.8955034 0.01894589 Inf 47.266 <.0001
## 0.8955034 0.01891313 Inf 47.348 <.0001
## 0.8955034 0.01886821 Inf 47.461 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.8947223 0.01898530 Inf 47.127 <.0001
## 0.8946037 0.01907697 Inf 46.894 <.0001
## 0.8925527 0.01903315 Inf 46.895 <.0001
## 0.7304924 0.03842470 Inf 19.011 <.0001
## 0.8876087 0.02159877 Inf 41.095 <.0001
## 0.8907685 0.01921679 Inf 46.354 <.0001
## 0.8738603 0.02044653 Inf 42.739 <.0001
## -0.0722167 0.01916471 Inf -3.768 0.5330
## -0.0720398 0.01960327 Inf -3.675 0.6282
## 0.8657900 0.02157484 Inf 40.130 <.0001
## 0.8703086 0.02169764 Inf 40.111 <.0001
## 0.8928401 0.01901910 Inf 46.944 <.0001
## 0.8950398 0.01901729 Inf 47.065 <.0001
## 0.5840953 0.08619747 Inf 6.776 <.0001
## 0.8740138 0.02067169 Inf 42.281 <.0001
## 0.8897650 0.01921063 Inf 46.316 <.0001
## 0.8952396 0.01887764 Inf 47.423 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.7118507 0.03756745 Inf 18.949 <.0001
## 0.8698802 0.02175657 Inf 39.982 <.0001
## 0.8935941 0.01898330 Inf 47.073 <.0001
## 0.8951115 0.01901308 Inf 47.079 <.0001
## 0.8955034 0.01974718 Inf 45.348 <.0001
## 0.8399438 0.02471394 Inf 33.987 <.0001
## 0.3230390 0.04431629 Inf 7.289 <.0001
## 0.8952798 0.01887619 Inf 47.429 <.0001
## 0.8945357 0.01904746 Inf 46.964 <.0001
## 0.8955034 0.01894589 Inf 47.266 <.0001
## 0.8955034 0.01901939 Inf 47.084 <.0001
## 0.8955034 0.01889981 Inf 47.382 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.8548667 0.03286859 Inf 26.009 <.0001
## 0.8955034 0.01894589 Inf 47.266 <.0001
## 0.8955034 0.01891313 Inf 47.348 <.0001
## 0.8955034 0.01886821 Inf 47.461 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.8955034 0.01894589 Inf 47.266 <.0001
## 0.8955034 0.01901939 Inf 47.084 <.0001
## 0.8955034 0.01889981 Inf 47.382 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.8341579 0.04012858 Inf 20.787 <.0001
## 0.8936094 0.01904515 Inf 46.921 <.0001
## 0.8955034 0.01891313 Inf 47.348 <.0001
## 0.8955034 0.01886821 Inf 47.461 <.0001
## 0.8955034 0.01899047 Inf 47.155 <.0001
## 0.6968442 0.04292058 Inf 16.236 <.0001
## 0.6945883 0.04260980 Inf 16.301 <.0001
## 0.6964773 0.04255020 Inf 16.368 <.0001
## 0.6961020 0.04253482 Inf 16.365 <.0001
## 0.6963806 0.04258939 Inf 16.351 <.0001
## 0.6968442 0.04255786 Inf 16.374 <.0001
## 0.6968442 0.04259063 Inf 16.361 <.0001
## 0.6968442 0.04253736 Inf 16.382 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## 0.6314859 0.05629968 Inf 11.217 <.0001
## 0.6968442 0.04255786 Inf 16.374 <.0001
## 0.6968442 0.04254329 Inf 16.380 <.0001
## 0.6968442 0.04252334 Inf 16.387 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## 0.6960631 0.04257491 Inf 16.349 <.0001
## 0.6959445 0.04261579 Inf 16.331 <.0001
## 0.6938935 0.04259489 Inf 16.291 <.0001
## 0.5318332 0.05410147 Inf 9.830 <.0001
## 0.6889495 0.04379870 Inf 15.730 <.0001
## 0.6921093 0.04267619 Inf 16.218 <.0001
## 0.6752012 0.04323583 Inf 15.617 <.0001
## -0.2708759 0.04267816 Inf -6.347 <.0001
## -0.2706990 0.04287698 Inf -6.313 <.0001
## 0.6671308 0.04377799 Inf 15.239 <.0001
## 0.6716494 0.04384008 Inf 15.320 <.0001
## 0.6941809 0.04258879 Inf 16.300 <.0001
## 0.6963806 0.04258939 Inf 16.351 <.0001
## 0.3854361 0.09424174 Inf 4.090 0.2453
## 0.6753546 0.04334282 Inf 15.582 <.0001
## 0.6911058 0.04267283 Inf 16.195 <.0001
## 0.6965804 0.04252735 Inf 16.380 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## 0.5131915 0.05349695 Inf 9.593 <.0001
## 0.6712210 0.04386914 Inf 15.301 <.0001
## 0.6949349 0.04257329 Inf 16.323 <.0001
## 0.6964523 0.04258756 Inf 16.353 <.0001
## 0.6968442 0.04292058 Inf 16.236 <.0001
## 0.6412846 0.04540203 Inf 14.125 <.0001
## 0.1243798 0.05845976 Inf 2.128 1.0000
## 0.6966206 0.04252673 Inf 16.381 <.0001
## 0.6958765 0.04260254 Inf 16.334 <.0001
## 0.6968442 0.04255786 Inf 16.374 <.0001
## 0.6968442 0.04259063 Inf 16.361 <.0001
## 0.6968442 0.04253736 Inf 16.382 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## 0.6562075 0.05031041 Inf 13.043 <.0001
## 0.6968442 0.04255786 Inf 16.374 <.0001
## 0.6968442 0.04254329 Inf 16.380 <.0001
## 0.6968442 0.04252334 Inf 16.387 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## 0.6968442 0.04255786 Inf 16.374 <.0001
## 0.6968442 0.04259063 Inf 16.361 <.0001
## 0.6968442 0.04253736 Inf 16.382 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## 0.6354987 0.05532456 Inf 11.487 <.0001
## 0.6949502 0.04260092 Inf 16.313 <.0001
## 0.6968442 0.04254329 Inf 16.380 <.0001
## 0.6968442 0.04252334 Inf 16.387 <.0001
## 0.6968442 0.04257772 Inf 16.366 <.0001
## -0.0022559 0.00732852 Inf -0.308 1.0000
## -0.0003669 0.00699300 Inf -0.052 1.0000
## -0.0007422 0.00689481 Inf -0.108 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0653583 0.03746319 Inf -1.745 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0007811 0.00713755 Inf -0.109 1.0000
## -0.0008997 0.00737631 Inf -0.122 1.0000
## -0.0029507 0.00723467 Inf -0.408 1.0000
## -0.1650110 0.03407226 Inf -4.843 0.0144
## -0.0078947 0.01247793 Inf -0.633 1.0000
## -0.0047349 0.00768323 Inf -0.616 1.0000
## -0.0216431 0.01026105 Inf -2.109 1.0000
## -0.9677201 0.00805444 Inf -120.147 <.0001
## -0.9675432 0.00905012 Inf -106.909 <.0001
## -0.0297134 0.01232249 Inf -2.411 1.0000
## -0.0251948 0.01255448 Inf -2.007 1.0000
## -0.0026633 0.00720142 Inf -0.370 1.0000
## -0.0004636 0.00722662 Inf -0.064 1.0000
## -0.3114081 0.08436852 Inf -3.691 0.6118
## -0.0214896 0.01070354 Inf -2.008 1.0000
## -0.0057384 0.00765600 Inf -0.750 1.0000
## -0.0002638 0.00685364 Inf -0.038 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.1836527 0.03310793 Inf -5.547 0.0004
## -0.0256232 0.01265424 Inf -2.025 1.0000
## -0.0019093 0.00711658 Inf -0.268 1.0000
## -0.0003919 0.00721654 Inf -0.054 1.0000
## 0.0000000 0.00897841 Inf 0.000 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0018890 0.00468983 Inf 0.403 1.0000
## 0.0015137 0.00454180 Inf 0.333 1.0000
## 0.0017923 0.00503147 Inf 0.356 1.0000
## 0.0022559 0.00476472 Inf 0.473 1.0000
## 0.0022559 0.00504906 Inf 0.447 1.0000
## 0.0022559 0.00457805 Inf 0.493 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## -0.0631025 0.03709912 Inf -1.701 1.0000
## 0.0022559 0.00476472 Inf 0.473 1.0000
## 0.0022559 0.00463275 Inf 0.487 1.0000
## 0.0022559 0.00444582 Inf 0.507 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## 0.0014748 0.00490244 Inf 0.301 1.0000
## 0.0013561 0.00524388 Inf 0.259 1.0000
## -0.0006948 0.00504120 Inf -0.138 1.0000
## -0.1627552 0.03367164 Inf -4.834 0.0151
## -0.0056388 0.01134629 Inf -0.497 1.0000
## -0.0024790 0.00566503 Inf -0.438 1.0000
## -0.0193872 0.00884614 Inf -2.192 1.0000
## -0.9654642 0.00618320 Inf -156.143 <.0001
## -0.9652873 0.00743396 Inf -129.848 <.0001
## -0.0274575 0.01117033 Inf -2.458 1.0000
## -0.0229389 0.01142649 Inf -2.008 1.0000
## -0.0004074 0.00499357 Inf -0.082 1.0000
## 0.0017923 0.00503147 Inf 0.356 1.0000
## -0.3091522 0.08420833 Inf -3.671 0.6319
## -0.0192337 0.00935583 Inf -2.056 1.0000
## -0.0034825 0.00562744 Inf -0.619 1.0000
## 0.0019921 0.00447947 Inf 0.445 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## -0.1813968 0.03269570 Inf -5.548 0.0004
## -0.0233673 0.01153594 Inf -2.026 1.0000
## 0.0003465 0.00487099 Inf 0.071 1.0000
## 0.0018640 0.00501704 Inf 0.372 1.0000
## 0.0022559 0.00732852 Inf 0.308 1.0000
## -0.0533037 0.01638001 Inf -3.254 0.9416
## -0.5702085 0.04040902 Inf -14.111 <.0001
## 0.0020323 0.00447430 Inf 0.454 1.0000
## 0.0012882 0.00513415 Inf 0.251 1.0000
## 0.0022559 0.00476472 Inf 0.473 1.0000
## 0.0022559 0.00504906 Inf 0.447 1.0000
## 0.0022559 0.00457805 Inf 0.493 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## -0.0383808 0.02717947 Inf -1.412 1.0000
## 0.0022559 0.00476472 Inf 0.473 1.0000
## 0.0022559 0.00463275 Inf 0.487 1.0000
## 0.0022559 0.00444582 Inf 0.507 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## 0.0022559 0.00476472 Inf 0.473 1.0000
## 0.0022559 0.00504906 Inf 0.447 1.0000
## 0.0022559 0.00457805 Inf 0.493 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## -0.0590897 0.03560331 Inf -1.660 1.0000
## 0.0003619 0.00510703 Inf 0.071 1.0000
## 0.0022559 0.00463275 Inf 0.487 1.0000
## 0.0022559 0.00444582 Inf 0.507 1.0000
## 0.0022559 0.00493900 Inf 0.457 1.0000
## -0.0003753 0.00397840 Inf -0.094 1.0000
## -0.0000968 0.00452919 Inf -0.021 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0003669 0.00401914 Inf 0.091 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0649915 0.03703702 Inf -1.755 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0004142 0.00438564 Inf -0.094 1.0000
## -0.0005329 0.00476434 Inf -0.112 1.0000
## -0.0025838 0.00454170 Inf -0.569 1.0000
## -0.1646442 0.03360312 Inf -4.900 0.0112
## -0.0075278 0.01113462 Inf -0.676 1.0000
## -0.0043680 0.00522651 Inf -0.836 1.0000
## -0.0212762 0.00857658 Inf -2.481 1.0000
## -0.9673532 0.00576263 Inf -167.867 <.0001
## -0.9671763 0.00708792 Inf -136.454 <.0001
## -0.0293465 0.01095932 Inf -2.678 0.9999
## -0.0248280 0.01121967 Inf -2.213 1.0000
## -0.0022964 0.00448858 Inf -0.512 1.0000
## -0.0000968 0.00452919 Inf -0.021 1.0000
## -0.3110413 0.08418029 Inf -3.695 0.6079
## -0.0211227 0.00910134 Inf -2.321 1.0000
## -0.0053715 0.00518629 Inf -1.036 1.0000
## 0.0001030 0.00390670 Inf 0.026 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.1832858 0.03262497 Inf -5.618 0.0003
## -0.0252563 0.01133118 Inf -2.229 1.0000
## -0.0015425 0.00435126 Inf -0.354 1.0000
## -0.0000250 0.00451310 Inf -0.006 1.0000
## 0.0003669 0.00699300 Inf 0.052 1.0000
## -0.0551927 0.01623852 Inf -3.399 0.8672
## -0.5720976 0.04034756 Inf -14.179 <.0001
## 0.0001433 0.00390074 Inf 0.037 1.0000
## -0.0006008 0.00464334 Inf -0.129 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0003669 0.00401914 Inf 0.091 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0402698 0.02709395 Inf -1.486 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## 0.0003669 0.00423054 Inf 0.087 1.0000
## 0.0003669 0.00454840 Inf 0.081 1.0000
## 0.0003669 0.00401914 Inf 0.091 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## -0.0609787 0.03553854 Inf -1.716 1.0000
## -0.0015271 0.00461396 Inf -0.331 1.0000
## 0.0003669 0.00408134 Inf 0.090 1.0000
## 0.0003669 0.00386784 Inf 0.095 1.0000
## 0.0003669 0.00442591 Inf 0.083 1.0000
## 0.0002786 0.00437600 Inf 0.064 1.0000
## 0.0007422 0.00406618 Inf 0.183 1.0000
## 0.0007422 0.00439594 Inf 0.169 1.0000
## 0.0007422 0.00384575 Inf 0.193 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## -0.0646161 0.03701805 Inf -1.746 1.0000
## 0.0007422 0.00406618 Inf 0.183 1.0000
## 0.0007422 0.00391071 Inf 0.190 1.0000
## 0.0007422 0.00368735 Inf 0.201 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## -0.0000389 0.00422720 Inf -0.009 1.0000
## -0.0001575 0.00461889 Inf -0.034 1.0000
## -0.0022084 0.00438858 Inf -0.503 1.0000
## -0.1642688 0.03358224 Inf -4.892 0.0116
## -0.0071525 0.01107279 Inf -0.646 1.0000
## -0.0039927 0.00509381 Inf -0.784 1.0000
## -0.0209008 0.00849542 Inf -2.460 1.0000
## -0.9669779 0.00564699 Inf -171.238 <.0001
## -0.9668010 0.00699425 Inf -138.228 <.0001
## -0.0289712 0.01089567 Inf -2.659 0.9999
## -0.0244526 0.01115763 Inf -2.192 1.0000
## -0.0019211 0.00433362 Inf -0.443 1.0000
## 0.0002786 0.00437600 Inf 0.064 1.0000
## -0.3106659 0.08417209 Inf -3.691 0.6121
## -0.0207474 0.00902491 Inf -2.299 1.0000
## -0.0049961 0.00505242 Inf -0.989 1.0000
## 0.0004784 0.00372804 Inf 0.128 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## -0.1829105 0.03260349 Inf -5.610 0.0003
## -0.0248810 0.01126974 Inf -2.208 1.0000
## -0.0011671 0.00419135 Inf -0.278 1.0000
## 0.0003503 0.00435935 Inf 0.080 1.0000
## 0.0007422 0.00689481 Inf 0.108 1.0000
## -0.0548174 0.01619529 Inf -3.385 0.8762
## -0.5717222 0.04033105 Inf -14.176 <.0001
## 0.0005186 0.00372180 Inf 0.139 1.0000
## -0.0002255 0.00449396 Inf -0.050 1.0000
## 0.0007422 0.00406618 Inf 0.183 1.0000
## 0.0007422 0.00439594 Inf 0.169 1.0000
## 0.0007422 0.00384575 Inf 0.193 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## -0.0398945 0.02706816 Inf -1.474 1.0000
## 0.0007422 0.00406618 Inf 0.183 1.0000
## 0.0007422 0.00391071 Inf 0.190 1.0000
## 0.0007422 0.00368735 Inf 0.201 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## 0.0007422 0.00406618 Inf 0.183 1.0000
## 0.0007422 0.00439594 Inf 0.169 1.0000
## 0.0007422 0.00384575 Inf 0.193 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## -0.0606033 0.03551879 Inf -1.706 1.0000
## -0.0011518 0.00446346 Inf -0.258 1.0000
## 0.0007422 0.00391071 Inf 0.190 1.0000
## 0.0007422 0.00368735 Inf 0.201 1.0000
## 0.0007422 0.00426907 Inf 0.174 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00489999 Inf 0.095 1.0000
## 0.0004636 0.00441310 Inf 0.105 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.0648947 0.03708169 Inf -1.750 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00446982 Inf 0.104 1.0000
## 0.0004636 0.00427577 Inf 0.108 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.0003175 0.00474927 Inf -0.067 1.0000
## -0.0004361 0.00510104 Inf -0.086 1.0000
## -0.0024870 0.00489367 Inf -0.508 1.0000
## -0.1645474 0.03365237 Inf -4.890 0.0117
## -0.0074311 0.01128269 Inf -0.659 1.0000
## -0.0042713 0.00553505 Inf -0.772 1.0000
## -0.0211794 0.00876778 Inf -2.416 1.0000
## -0.9672565 0.00604494 Inf -160.011 <.0001
## -0.9670796 0.00731930 Inf -132.127 <.0001
## -0.0292498 0.01110953 Inf -2.633 1.0000
## -0.0247312 0.01136646 Inf -2.176 1.0000
## -0.0021996 0.00484442 Inf -0.454 1.0000
## 0.0000000 0.00488215 Inf 0.000 1.0000
## -0.3109445 0.08419999 Inf -3.693 0.6099
## -0.0210259 0.00928174 Inf -2.265 1.0000
## -0.0052747 0.00549706 Inf -0.960 1.0000
## 0.0001998 0.00431093 Inf 0.046 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.1831891 0.03267569 Inf -5.606 0.0003
## -0.0251596 0.01147654 Inf -2.192 1.0000
## -0.0014457 0.00471750 Inf -0.306 1.0000
## 0.0000717 0.00486723 Inf 0.015 1.0000
## 0.0004636 0.00722662 Inf 0.064 1.0000
## -0.0550959 0.01634018 Inf -3.372 0.8842
## -0.5720008 0.04038881 Inf -14.162 <.0001
## 0.0002400 0.00430553 Inf 0.056 1.0000
## -0.0005041 0.00498821 Inf -0.101 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00489999 Inf 0.095 1.0000
## 0.0004636 0.00441310 Inf 0.105 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.0401731 0.02715503 Inf -1.479 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00446982 Inf 0.104 1.0000
## 0.0004636 0.00427577 Inf 0.108 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00489999 Inf 0.095 1.0000
## 0.0004636 0.00441310 Inf 0.105 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.0608819 0.03558510 Inf -1.711 1.0000
## -0.0014304 0.00496084 Inf -0.288 1.0000
## 0.0004636 0.00446982 Inf 0.104 1.0000
## 0.0004636 0.00427577 Inf 0.108 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0653583 0.03704708 Inf -1.764 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0007811 0.00446543 Inf -0.175 1.0000
## -0.0008997 0.00483791 Inf -0.186 1.0000
## -0.0029507 0.00461908 Inf -0.639 1.0000
## -0.1650110 0.03361420 Inf -4.909 0.0107
## -0.0078947 0.01116665 Inf -0.707 1.0000
## -0.0047349 0.00529409 Inf -0.894 1.0000
## -0.0216431 0.00861885 Inf -2.511 1.0000
## -0.9677201 0.00581975 Inf -166.282 <.0001
## -0.9675432 0.00713443 Inf -135.616 <.0001
## -0.0297134 0.01099268 Inf -2.703 0.9999
## -0.0251948 0.01125212 Inf -2.239 1.0000
## -0.0026633 0.00456682 Inf -0.583 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## -0.3114081 0.08418458 Inf -3.699 0.6036
## -0.0214896 0.00914118 Inf -2.351 1.0000
## -0.0057384 0.00525450 Inf -1.092 1.0000
## -0.0002638 0.00399598 Inf -0.066 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1836527 0.03263634 Inf -5.627 0.0003
## -0.0256232 0.01136333 Inf -2.255 1.0000
## -0.0019093 0.00443183 Inf -0.431 1.0000
## -0.0003919 0.00459062 Inf -0.085 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0555596 0.01626138 Inf -3.417 0.8554
## -0.5724644 0.04035591 Inf -14.185 <.0001
## -0.0002236 0.00399015 Inf -0.056 1.0000
## -0.0009677 0.00471880 Inf -0.205 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0406367 0.02710757 Inf -1.499 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0653583 0.03708472 Inf -1.762 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0007811 0.00476765 Inf -0.164 1.0000
## -0.0008997 0.00511818 Inf -0.176 1.0000
## -0.0029507 0.00491185 Inf -0.601 1.0000
## -0.1650110 0.03365568 Inf -4.903 0.0110
## -0.0078947 0.01129091 Inf -0.699 1.0000
## -0.0047349 0.00555138 Inf -0.853 1.0000
## -0.0216431 0.00877924 Inf -2.465 1.0000
## -0.9677201 0.00605474 Inf -159.829 <.0001
## -0.9675432 0.00732738 Inf -132.045 <.0001
## -0.0297134 0.01111888 Inf -2.672 0.9999
## -0.0251948 0.01137544 Inf -2.215 1.0000
## -0.0026633 0.00486274 Inf -0.548 1.0000
## -0.0004636 0.00489999 Inf -0.095 1.0000
## -0.3114081 0.08420115 Inf -3.698 0.6044
## -0.0214896 0.00929256 Inf -2.313 1.0000
## -0.0057384 0.00551363 Inf -1.041 1.0000
## -0.0002638 0.00433108 Inf -0.061 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.1836527 0.03267906 Inf -5.620 0.0003
## -0.0256232 0.01148545 Inf -2.231 1.0000
## -0.0019093 0.00473620 Inf -0.403 1.0000
## -0.0003919 0.00488510 Inf -0.080 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## -0.0555596 0.01634696 Inf -3.399 0.8673
## -0.5724644 0.04039047 Inf -14.173 <.0001
## -0.0002236 0.00432570 Inf -0.052 1.0000
## -0.0009677 0.00500574 Inf -0.193 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03702353 Inf -1.765 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0007811 0.00426569 Inf -0.183 1.0000
## -0.0008997 0.00465418 Inf -0.193 1.0000
## -0.0029507 0.00442627 Inf -0.667 1.0000
## -0.1650110 0.03358825 Inf -4.913 0.0105
## -0.0078947 0.01108829 Inf -0.712 1.0000
## -0.0047349 0.00512673 Inf -0.924 1.0000
## -0.0216431 0.00851708 Inf -2.541 1.0000
## -0.9677201 0.00566793 Inf -170.736 <.0001
## -0.9675432 0.00701114 Inf -138.001 <.0001
## -0.0297134 0.01091307 Inf -2.723 0.9998
## -0.0251948 0.01117436 Inf -2.255 1.0000
## -0.0026633 0.00437171 Inf -0.609 1.0000
## -0.0004636 0.00441310 Inf -0.105 1.0000
## -0.3114081 0.08417422 Inf -3.700 0.6032
## -0.0214896 0.00904528 Inf -2.376 1.0000
## -0.0057384 0.00508583 Inf -1.128 1.0000
## -0.0002638 0.00377145 Inf -0.070 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.1836527 0.03260961 Inf -5.632 0.0003
## -0.0256232 0.01128633 Inf -2.270 1.0000
## -0.0019093 0.00423050 Inf -0.451 1.0000
## -0.0003919 0.00439657 Inf -0.089 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## -0.0555596 0.01620767 Inf -3.428 0.8475
## -0.5724644 0.04033429 Inf -14.193 <.0001
## -0.0002236 0.00376527 Inf -0.059 1.0000
## -0.0009677 0.00453024 Inf -0.214 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0653583 0.03706989 Inf -1.763 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0653583 0.03704708 Inf 1.764 1.0000
## 0.0653583 0.03703034 Inf 1.765 1.0000
## 0.0653583 0.03700741 Inf 1.766 1.0000
## 0.0653583 0.03706989 Inf 1.763 1.0000
## 0.0645773 0.03706398 Inf 1.742 1.0000
## 0.0644586 0.03711052 Inf 1.737 1.0000
## 0.0624077 0.03707973 Inf 1.683 1.0000
## -0.0996527 0.04980422 Inf -2.001 1.0000
## 0.0574636 0.03844199 Inf 1.495 1.0000
## 0.0606234 0.03716744 Inf 1.631 1.0000
## 0.0437153 0.03776666 Inf 1.158 1.0000
## -0.9023617 0.03730257 Inf -24.190 <.0001
## -0.9021848 0.03753035 Inf -24.039 <.0001
## 0.0356449 0.03837203 Inf 0.929 1.0000
## 0.0401635 0.03845036 Inf 1.045 1.0000
## 0.0626951 0.03707365 Inf 1.691 1.0000
## 0.0648947 0.03708169 Inf 1.750 1.0000
## -0.2460498 0.09186685 Inf -2.678 0.9999
## 0.0438688 0.03788940 Inf 1.158 1.0000
## 0.0596200 0.03716051 Inf 1.604 1.0000
## 0.0650945 0.03701111 Inf 1.759 1.0000
## 0.0653583 0.03706989 Inf 1.763 1.0000
## -0.1182943 0.04915151 Inf -2.407 1.0000
## 0.0397351 0.03848273 Inf 1.033 1.0000
## 0.0634490 0.03705833 Inf 1.712 1.0000
## 0.0649665 0.03707984 Inf 1.752 1.0000
## 0.0653583 0.03746319 Inf 1.745 1.0000
## 0.0097988 0.04018812 Inf 0.244 1.0000
## -0.5071061 0.05463679 Inf -9.281 <.0001
## 0.0651347 0.03701054 Inf 1.760 1.0000
## 0.0643906 0.03709508 Inf 1.736 1.0000
## 0.0653583 0.03704708 Inf 1.764 1.0000
## 0.0653583 0.03708472 Inf 1.762 1.0000
## 0.0653583 0.03702353 Inf 1.765 1.0000
## 0.0653583 0.03706989 Inf 1.763 1.0000
## 0.0247217 0.04567182 Inf 0.541 1.0000
## 0.0653583 0.03704708 Inf 1.764 1.0000
## 0.0653583 0.03703034 Inf 1.765 1.0000
## 0.0653583 0.03700741 Inf 1.766 1.0000
## 0.0653583 0.03706989 Inf 1.763 1.0000
## 0.0653583 0.03704708 Inf 1.764 1.0000
## 0.0653583 0.03708472 Inf 1.762 1.0000
## 0.0653583 0.03702353 Inf 1.765 1.0000
## 0.0653583 0.03706989 Inf 1.763 1.0000
## 0.0040128 0.05112987 Inf 0.078 1.0000
## 0.0634644 0.03709011 Inf 1.711 1.0000
## 0.0653583 0.03703034 Inf 1.765 1.0000
## 0.0653583 0.03700741 Inf 1.766 1.0000
## 0.0653583 0.03706989 Inf 1.763 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0007811 0.00446543 Inf -0.175 1.0000
## -0.0008997 0.00483791 Inf -0.186 1.0000
## -0.0029507 0.00461908 Inf -0.639 1.0000
## -0.1650110 0.03361420 Inf -4.909 0.0107
## -0.0078947 0.01116665 Inf -0.707 1.0000
## -0.0047349 0.00529409 Inf -0.894 1.0000
## -0.0216431 0.00861885 Inf -2.511 1.0000
## -0.9677201 0.00581975 Inf -166.282 <.0001
## -0.9675432 0.00713443 Inf -135.616 <.0001
## -0.0297134 0.01099268 Inf -2.703 0.9999
## -0.0251948 0.01125212 Inf -2.239 1.0000
## -0.0026633 0.00456682 Inf -0.583 1.0000
## -0.0004636 0.00460646 Inf -0.101 1.0000
## -0.3114081 0.08418458 Inf -3.699 0.6036
## -0.0214896 0.00914118 Inf -2.351 1.0000
## -0.0057384 0.00525450 Inf -1.092 1.0000
## -0.0002638 0.00399598 Inf -0.066 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.1836527 0.03263634 Inf -5.627 0.0003
## -0.0256232 0.01136333 Inf -2.255 1.0000
## -0.0019093 0.00443183 Inf -0.431 1.0000
## -0.0003919 0.00459062 Inf -0.085 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## -0.0555596 0.01626138 Inf -3.417 0.8554
## -0.5724644 0.04035591 Inf -14.185 <.0001
## -0.0002236 0.00399015 Inf -0.056 1.0000
## -0.0009677 0.00471880 Inf -0.205 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0406367 0.02710757 Inf -1.499 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0007811 0.00432434 Inf -0.181 1.0000
## -0.0008997 0.00470799 Inf -0.191 1.0000
## -0.0029507 0.00448283 Inf -0.658 1.0000
## -0.1650110 0.03359575 Inf -4.912 0.0106
## -0.0078947 0.01111099 Inf -0.711 1.0000
## -0.0047349 0.00517564 Inf -0.915 1.0000
## -0.0216431 0.00854660 Inf -2.532 1.0000
## -0.9677201 0.00571220 Inf -169.413 <.0001
## -0.9675432 0.00704698 Inf -137.299 <.0001
## -0.0297134 0.01093613 Inf -2.717 0.9998
## -0.0251948 0.01119688 Inf -2.250 1.0000
## -0.0026633 0.00442896 Inf -0.601 1.0000
## -0.0004636 0.00446982 Inf -0.104 1.0000
## -0.3114081 0.08417721 Inf -3.699 0.6033
## -0.0214896 0.00907309 Inf -2.368 1.0000
## -0.0057384 0.00513513 Inf -1.117 1.0000
## -0.0002638 0.00383767 Inf -0.069 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.1836527 0.03261733 Inf -5.631 0.0003
## -0.0256232 0.01130863 Inf -2.266 1.0000
## -0.0019093 0.00428963 Inf -0.445 1.0000
## -0.0003919 0.00445350 Inf -0.088 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## -0.0555596 0.01622320 Inf -3.425 0.8498
## -0.5724644 0.04034054 Inf -14.191 <.0001
## -0.0002236 0.00383159 Inf -0.058 1.0000
## -0.0009677 0.00458551 Inf -0.211 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0406367 0.02708468 Inf -1.500 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00412345 Inf -0.189 1.0000
## -0.0008997 0.00452417 Inf -0.199 1.0000
## -0.0029507 0.00428936 Inf -0.688 1.0000
## -0.1650110 0.03357048 Inf -4.915 0.0104
## -0.0078947 0.01103435 Inf -0.715 1.0000
## -0.0047349 0.00500900 Inf -0.945 1.0000
## -0.0216431 0.00844673 Inf -2.562 1.0000
## -0.9677201 0.00556167 Inf -173.998 <.0001
## -0.9675432 0.00692552 Inf -139.707 <.0001
## -0.0297134 0.01085826 Inf -2.736 0.9998
## -0.0251948 0.01112084 Inf -2.266 1.0000
## -0.0026633 0.00423304 Inf -0.629 1.0000
## -0.0004636 0.00427577 Inf -0.108 1.0000
## -0.3114081 0.08416713 Inf -3.700 0.6029
## -0.0214896 0.00897908 Inf -2.393 1.0000
## -0.0057384 0.00496714 Inf -1.155 1.0000
## -0.0002638 0.00360979 Inf -0.073 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.1836527 0.03259130 Inf -5.635 0.0003
## -0.0256232 0.01123334 Inf -2.281 1.0000
## -0.0019093 0.00408704 Inf -0.467 1.0000
## -0.0003919 0.00425870 Inf -0.092 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## -0.0555596 0.01617081 Inf -3.436 0.8419
## -0.5724644 0.04031950 Inf -14.198 <.0001
## -0.0002236 0.00360333 Inf -0.062 1.0000
## -0.0009677 0.00439656 Inf -0.220 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0406367 0.02705333 Inf -1.502 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0007811 0.00465094 Inf -0.168 1.0000
## -0.0008997 0.00500964 Inf -0.180 1.0000
## -0.0029507 0.00479865 Inf -0.615 1.0000
## -0.1650110 0.03363934 Inf -4.905 0.0109
## -0.0078947 0.01124212 Inf -0.702 1.0000
## -0.0047349 0.00545147 Inf -0.869 1.0000
## -0.0216431 0.00871641 Inf -2.483 1.0000
## -0.9677201 0.00596327 Inf -162.280 <.0001
## -0.9675432 0.00725198 Inf -133.418 <.0001
## -0.0297134 0.01106934 Inf -2.684 0.9999
## -0.0251948 0.01132702 Inf -2.224 1.0000
## -0.0026633 0.00474837 Inf -0.561 1.0000
## -0.0004636 0.00478650 Inf -0.097 1.0000
## -0.3114081 0.08419462 Inf -3.699 0.6041
## -0.0214896 0.00923322 Inf -2.327 1.0000
## -0.0057384 0.00541303 Inf -1.060 1.0000
## -0.0002638 0.00420226 Inf -0.063 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0001187 0.00497396 Inf -0.024 1.0000
## -0.0021696 0.00476083 Inf -0.456 1.0000
## -0.1642300 0.03363285 Inf -4.883 0.0120
## -0.0071136 0.01122550 Inf -0.634 1.0000
## -0.0039538 0.00541780 Inf -0.730 1.0000
## -0.0208620 0.00869345 Inf -2.400 1.0000
## -0.9669390 0.00594132 Inf -162.748 <.0001
## -0.9667621 0.00723397 Inf -133.642 <.0001
## -0.0289323 0.01105075 Inf -2.618 1.0000
## -0.0244137 0.01130913 Inf -2.159 1.0000
## -0.0018822 0.00471022 Inf -0.400 1.0000
## 0.0003175 0.00474927 Inf 0.067 1.0000
## -0.3106270 0.08419231 Inf -3.689 0.6134
## -0.0207085 0.00921157 Inf -2.248 1.0000
## -0.0049573 0.00537889 Inf -0.922 1.0000
## 0.0005173 0.00415987 Inf 0.124 1.0000
## 0.0007811 0.00465094 Inf 0.168 1.0000
## -0.1828716 0.03265562 Inf -5.600 0.0003
## -0.0248421 0.01141975 Inf -2.175 1.0000
## -0.0011283 0.00457967 Inf -0.246 1.0000
## 0.0003892 0.00473393 Inf 0.082 1.0000
## 0.0007811 0.00713755 Inf 0.109 1.0000
## -0.0547785 0.01629999 Inf -3.361 0.8908
## -0.5716833 0.04037330 Inf -14.160 <.0001
## 0.0005575 0.00415428 Inf 0.134 1.0000
## -0.0001866 0.00485817 Inf -0.038 1.0000
## 0.0007811 0.00446543 Inf 0.175 1.0000
## 0.0007811 0.00476765 Inf 0.164 1.0000
## 0.0007811 0.00426569 Inf 0.183 1.0000
## 0.0007811 0.00465094 Inf 0.168 1.0000
## -0.0398556 0.02713095 Inf -1.469 1.0000
## 0.0007811 0.00446543 Inf 0.175 1.0000
## 0.0007811 0.00432434 Inf 0.181 1.0000
## 0.0007811 0.00412345 Inf 0.189 1.0000
## 0.0007811 0.00465094 Inf 0.168 1.0000
## 0.0007811 0.00446543 Inf 0.175 1.0000
## 0.0007811 0.00476765 Inf 0.164 1.0000
## 0.0007811 0.00426569 Inf 0.183 1.0000
## 0.0007811 0.00465094 Inf 0.168 1.0000
## -0.0605645 0.03556665 Inf -1.703 1.0000
## -0.0011129 0.00482996 Inf -0.230 1.0000
## 0.0007811 0.00432434 Inf 0.181 1.0000
## 0.0007811 0.00412345 Inf 0.189 1.0000
## 0.0007811 0.00465094 Inf 0.168 1.0000
## -0.0020509 0.00511171 Inf -0.401 1.0000
## -0.1641113 0.03368415 Inf -4.872 0.0127
## -0.0069950 0.01137867 Inf -0.615 1.0000
## -0.0038352 0.00572852 Inf -0.669 1.0000
## -0.0207433 0.00889014 Inf -2.333 1.0000
## -0.9668203 0.00622724 Inf -155.257 <.0001
## -0.9666434 0.00747058 Inf -129.393 <.0001
## -0.0288137 0.01120606 Inf -2.571 1.0000
## -0.0242951 0.01146098 Inf -2.120 1.0000
## -0.0017635 0.00506462 Inf -0.348 1.0000
## 0.0004361 0.00510104 Inf 0.086 1.0000
## -0.3105084 0.08421286 Inf -3.687 0.6158
## -0.0205898 0.00939741 Inf -2.191 1.0000
## -0.0048386 0.00569171 Inf -0.850 1.0000
## 0.0006359 0.00455737 Inf 0.140 1.0000
## 0.0008997 0.00500964 Inf 0.180 1.0000
## -0.1827529 0.03270846 Inf -5.587 0.0003
## -0.0247235 0.01157015 Inf -2.137 1.0000
## -0.0010096 0.00494347 Inf -0.204 1.0000
## 0.0005079 0.00508677 Inf 0.100 1.0000
## 0.0008997 0.00737631 Inf 0.122 1.0000
## -0.0546598 0.01640558 Inf -3.332 0.9066
## -0.5715647 0.04041632 Inf -14.142 <.0001
## 0.0006762 0.00455228 Inf 0.149 1.0000
## -0.0000680 0.00520256 Inf -0.013 1.0000
## 0.0008997 0.00483791 Inf 0.186 1.0000
## 0.0008997 0.00511818 Inf 0.176 1.0000
## 0.0008997 0.00465418 Inf 0.193 1.0000
## 0.0008997 0.00500964 Inf 0.180 1.0000
## -0.0397369 0.02719454 Inf -1.461 1.0000
## 0.0008997 0.00483791 Inf 0.186 1.0000
## 0.0008997 0.00470799 Inf 0.191 1.0000
## 0.0008997 0.00452417 Inf 0.199 1.0000
## 0.0008997 0.00500964 Inf 0.180 1.0000
## 0.0008997 0.00483791 Inf 0.186 1.0000
## 0.0008997 0.00511818 Inf 0.176 1.0000
## 0.0008997 0.00465418 Inf 0.193 1.0000
## 0.0008997 0.00500964 Inf 0.180 1.0000
## -0.0604458 0.03561515 Inf -1.697 1.0000
## -0.0009942 0.00517620 Inf -0.192 1.0000
## 0.0008997 0.00470799 Inf 0.191 1.0000
## 0.0008997 0.00452417 Inf 0.199 1.0000
## 0.0008997 0.00500964 Inf 0.180 1.0000
## -0.1620604 0.03365030 Inf -4.816 0.0163
## -0.0049440 0.01128517 Inf -0.438 1.0000
## -0.0017843 0.00554216 Inf -0.322 1.0000
## -0.0186924 0.00876635 Inf -2.132 1.0000
## -0.9647694 0.00607812 Inf -158.728 <.0001
## -0.9645925 0.00734680 Inf -131.294 <.0001
## -0.0267627 0.01110680 Inf -2.410 1.0000
## -0.0222442 0.01136463 Inf -1.957 1.0000
## 0.0002874 0.00485419 Inf 0.059 1.0000
## 0.0024870 0.00489367 Inf 0.508 1.0000
## -0.3084575 0.08420004 Inf -3.663 0.6398
## -0.0185389 0.00928043 Inf -1.998 1.0000
## -0.0027877 0.00550355 Inf -0.507 1.0000
## 0.0026868 0.00432416 Inf 0.621 1.0000
## 0.0029507 0.00479865 Inf 0.615 1.0000
## -0.1807020 0.03267379 Inf -5.530 0.0005
## -0.0226726 0.01147464 Inf -1.976 1.0000
## 0.0010413 0.00472817 Inf 0.220 1.0000
## 0.0025588 0.00487884 Inf 0.524 1.0000
## 0.0029507 0.00723467 Inf 0.408 1.0000
## -0.0526089 0.01633617 Inf -3.220 0.9534
## -0.5695138 0.04039281 Inf -14.099 <.0001
## 0.0027271 0.00431882 Inf 0.631 1.0000
## 0.0019829 0.00499906 Inf 0.397 1.0000
## 0.0029507 0.00461908 Inf 0.639 1.0000
## 0.0029507 0.00491185 Inf 0.601 1.0000
## 0.0029507 0.00442627 Inf 0.667 1.0000
## 0.0029507 0.00479865 Inf 0.615 1.0000
## -0.0376860 0.02715324 Inf -1.388 1.0000
## 0.0029507 0.00461908 Inf 0.639 1.0000
## 0.0029507 0.00448283 Inf 0.658 1.0000
## 0.0029507 0.00428936 Inf 0.688 1.0000
## 0.0029507 0.00479865 Inf 0.615 1.0000
## 0.0029507 0.00461908 Inf 0.639 1.0000
## 0.0029507 0.00491185 Inf 0.601 1.0000
## 0.0029507 0.00442627 Inf 0.667 1.0000
## 0.0029507 0.00479865 Inf 0.615 1.0000
## -0.0583949 0.03558313 Inf -1.641 1.0000
## 0.0010567 0.00497100 Inf 0.213 1.0000
## 0.0029507 0.00448283 Inf 0.658 1.0000
## 0.0029507 0.00428936 Inf 0.688 1.0000
## 0.0029507 0.00479865 Inf 0.615 1.0000
## 0.1571163 0.03514590 Inf 4.470 0.0682
## 0.1602761 0.03374699 Inf 4.749 0.0218
## 0.1433680 0.03440631 Inf 4.167 0.1948
## -0.8027090 0.03389422 Inf -23.683 <.0001
## -0.8025321 0.03414474 Inf -23.504 <.0001
## 0.1352976 0.03506990 Inf 3.858 0.4431
## 0.1398162 0.03515550 Inf 3.977 0.3336
## 0.1623478 0.03364359 Inf 4.826 0.0156
## 0.1645474 0.03365237 Inf 4.890 0.0117
## -0.1463971 0.09053718 Inf -1.617 1.0000
## 0.1435215 0.03454100 Inf 4.155 0.2020
## 0.1592727 0.03373939 Inf 4.721 0.0247
## 0.1647472 0.03357456 Inf 4.907 0.0108
## 0.1650110 0.03363934 Inf 4.905 0.0109
## -0.0186416 0.04661949 Inf -0.400 1.0000
## 0.1393878 0.03519091 Inf 3.961 0.3475
## 0.1631017 0.03362667 Inf 4.850 0.0140
## 0.1646192 0.03365031 Inf 4.892 0.0116
## 0.1650110 0.03407226 Inf 4.843 0.0144
## 0.1094515 0.03704852 Inf 2.954 0.9956
## -0.4074534 0.05236927 Inf -7.780 <.0001
## 0.1647874 0.03357393 Inf 4.908 0.0107
## 0.1640433 0.03366714 Inf 4.873 0.0126
## 0.1650110 0.03361420 Inf 4.909 0.0107
## 0.1650110 0.03365568 Inf 4.903 0.0110
## 0.1650110 0.03358825 Inf 4.913 0.0105
## 0.1650110 0.03363934 Inf 4.905 0.0109
## 0.1243744 0.04293498 Inf 2.897 0.9977
## 0.1650110 0.03361420 Inf 4.909 0.0107
## 0.1650110 0.03359575 Inf 4.912 0.0106
## 0.1650110 0.03357048 Inf 4.915 0.0104
## 0.1650110 0.03363934 Inf 4.905 0.0109
## 0.1650110 0.03361420 Inf 4.909 0.0107
## 0.1650110 0.03365568 Inf 4.903 0.0110
## 0.1650110 0.03358825 Inf 4.913 0.0105
## 0.1650110 0.03363934 Inf 4.905 0.0109
## 0.1036655 0.04870087 Inf 2.129 1.0000
## 0.1631171 0.03366169 Inf 4.846 0.0143
## 0.1650110 0.03359575 Inf 4.912 0.0106
## 0.1650110 0.03357048 Inf 4.915 0.0104
## 0.1650110 0.03363934 Inf 4.905 0.0109
## 0.0031598 0.01157606 Inf 0.273 1.0000
## -0.0137484 0.01341451 Inf -1.025 1.0000
## -0.9598254 0.01186687 Inf -80.883 <.0001
## -0.9596485 0.01256411 Inf -76.380 <.0001
## -0.0218187 0.01504649 Inf -1.450 1.0000
## -0.0173001 0.01523893 Inf -1.135 1.0000
## 0.0052314 0.01126418 Inf 0.464 1.0000
## 0.0074311 0.01128269 Inf 0.659 1.0000
## -0.3035134 0.08481043 Inf -3.579 0.7224
## -0.0135949 0.01375602 Inf -0.988 1.0000
## 0.0021563 0.01155703 Inf 0.187 1.0000
## 0.0076309 0.01104774 Inf 0.691 1.0000
## 0.0078947 0.01124212 Inf 0.702 1.0000
## -0.1757580 0.03421251 Inf -5.137 0.0036
## -0.0177285 0.01532103 Inf -1.157 1.0000
## 0.0059854 0.01121094 Inf 0.534 1.0000
## 0.0075028 0.01127632 Inf 0.665 1.0000
## 0.0078947 0.01247793 Inf 0.633 1.0000
## -0.0476649 0.01922959 Inf -2.479 1.0000
## -0.5645697 0.04165710 Inf -13.553 <.0001
## 0.0076711 0.01104568 Inf 0.694 1.0000
## 0.0069270 0.01132847 Inf 0.611 1.0000
## 0.0078947 0.01116665 Inf 0.707 1.0000
## 0.0078947 0.01129091 Inf 0.699 1.0000
## 0.0078947 0.01108829 Inf 0.712 1.0000
## 0.0078947 0.01124212 Inf 0.702 1.0000
## -0.0327420 0.02898736 Inf -1.130 1.0000
## 0.0078947 0.01116665 Inf 0.707 1.0000
## 0.0078947 0.01111099 Inf 0.711 1.0000
## 0.0078947 0.01103435 Inf 0.715 1.0000
## 0.0078947 0.01124212 Inf 0.702 1.0000
## 0.0078947 0.01116665 Inf 0.707 1.0000
## 0.0078947 0.01129091 Inf 0.699 1.0000
## 0.0078947 0.01108829 Inf 0.712 1.0000
## 0.0078947 0.01124212 Inf 0.702 1.0000
## -0.0534508 0.03700066 Inf -1.445 1.0000
## 0.0060007 0.01131551 Inf 0.530 1.0000
## 0.0078947 0.01111099 Inf 0.711 1.0000
## 0.0078947 0.01103435 Inf 0.715 1.0000
## 0.0078947 0.01124212 Inf 0.702 1.0000
## -0.0169081 0.00913475 Inf -1.851 1.0000
## -0.9629852 0.00662043 Inf -145.457 <.0001
## -0.9628083 0.00780147 Inf -123.414 <.0001
## -0.0249785 0.01139876 Inf -2.191 1.0000
## -0.0204599 0.01165068 Inf -1.756 1.0000
## 0.0020716 0.00549907 Inf 0.377 1.0000
## 0.0042713 0.00553505 Inf 0.772 1.0000
## -0.3066732 0.08423933 Inf -3.640 0.6627
## -0.0167547 0.00962921 Inf -1.740 1.0000
## -0.0010034 0.00607862 Inf -0.165 1.0000
## 0.0044711 0.00503869 Inf 0.887 1.0000
## 0.0047349 0.00545147 Inf 0.869 1.0000
## -0.1789178 0.03277352 Inf -5.459 0.0007
## -0.0208883 0.01175796 Inf -1.777 1.0000
## 0.0028256 0.00538854 Inf 0.524 1.0000
## 0.0043430 0.00552199 Inf 0.786 1.0000
## 0.0047349 0.00768323 Inf 0.616 1.0000
## -0.0508247 0.01653459 Inf -3.074 0.9854
## -0.5677295 0.04047730 Inf -14.026 <.0001
## 0.0045113 0.00503413 Inf 0.896 1.0000
## 0.0037672 0.00562820 Inf 0.669 1.0000
## 0.0047349 0.00529409 Inf 0.894 1.0000
## 0.0047349 0.00555138 Inf 0.853 1.0000
## 0.0047349 0.00512673 Inf 0.924 1.0000
## 0.0047349 0.00545147 Inf 0.869 1.0000
## -0.0359018 0.02727350 Inf -1.316 1.0000
## 0.0047349 0.00529409 Inf 0.894 1.0000
## 0.0047349 0.00517564 Inf 0.915 1.0000
## 0.0047349 0.00500900 Inf 0.945 1.0000
## 0.0047349 0.00545147 Inf 0.869 1.0000
## 0.0047349 0.00529409 Inf 0.894 1.0000
## 0.0047349 0.00555138 Inf 0.853 1.0000
## 0.0047349 0.00512673 Inf 0.924 1.0000
## 0.0047349 0.00545147 Inf 0.869 1.0000
## -0.0566106 0.03567457 Inf -1.587 1.0000
## 0.0028409 0.00560283 Inf 0.507 1.0000
## 0.0047349 0.00517564 Inf 0.915 1.0000
## 0.0047349 0.00500900 Inf 0.945 1.0000
## 0.0047349 0.00545147 Inf 0.869 1.0000
## -0.9460770 0.00956894 Inf -98.870 <.0001
## -0.9459001 0.01042130 Inf -90.766 <.0001
## -0.0080704 0.01323911 Inf -0.610 1.0000
## -0.0035518 0.01346024 Inf -0.264 1.0000
## 0.0189798 0.00873984 Inf 2.172 1.0000
## 0.0211794 0.00876778 Inf 2.416 1.0000
## -0.2897651 0.08451014 Inf -3.429 0.8469
## 0.0001535 0.01175802 Inf 0.013 1.0000
## 0.0159047 0.00910898 Inf 1.746 1.0000
## 0.0213792 0.00846370 Inf 2.526 1.0000
## 0.0216431 0.00871641 Inf 2.483 1.0000
## -0.1620096 0.03345318 Inf -4.843 0.0144
## -0.0039802 0.01355285 Inf -0.294 1.0000
## 0.0197337 0.00867251 Inf 2.275 1.0000
## 0.0212512 0.00875971 Inf 2.426 1.0000
## 0.0216431 0.01026105 Inf 2.109 1.0000
## -0.0339165 0.01784292 Inf -1.901 1.0000
## -0.5508214 0.04105773 Inf -13.416 <.0001
## 0.0214195 0.00846108 Inf 2.532 1.0000
## 0.0206753 0.00882566 Inf 2.343 1.0000
## 0.0216431 0.00861885 Inf 2.511 1.0000
## 0.0216431 0.00877924 Inf 2.465 1.0000
## 0.0216431 0.00851708 Inf 2.541 1.0000
## 0.0216431 0.00871641 Inf 2.483 1.0000
## -0.0189936 0.02808908 Inf -0.676 1.0000
## 0.0216431 0.00861885 Inf 2.511 1.0000
## 0.0216431 0.00854660 Inf 2.532 1.0000
## 0.0216431 0.00844673 Inf 2.562 1.0000
## 0.0216431 0.00871641 Inf 2.483 1.0000
## 0.0216431 0.00861885 Inf 2.511 1.0000
## 0.0216431 0.00877924 Inf 2.465 1.0000
## 0.0216431 0.00851708 Inf 2.541 1.0000
## 0.0216431 0.00871641 Inf 2.483 1.0000
## -0.0397025 0.03629882 Inf -1.094 1.0000
## 0.0197491 0.00880729 Inf 2.242 1.0000
## 0.0216431 0.00854660 Inf 2.532 1.0000
## 0.0216431 0.00844673 Inf 2.562 1.0000
## 0.0216431 0.00871641 Inf 2.483 1.0000
## 0.0001769 0.00787949 Inf 0.022 1.0000
## 0.9380067 0.01177382 Inf 79.669 <.0001
## 0.9425252 0.01200525 Inf 78.509 <.0001
## 0.9650568 0.00603583 Inf 159.888 <.0001
## 0.9672565 0.00604494 Inf 160.011 <.0001
## 0.6563120 0.08428431 Inf 7.787 <.0001
## 0.9462305 0.01004144 Inf 94.233 <.0001
## 0.9619817 0.00659686 Inf 145.824 <.0001
## 0.9674563 0.00559160 Inf 173.020 <.0001
## 0.9677201 0.00596327 Inf 162.280 <.0001
## 0.7840674 0.03292146 Inf 23.816 <.0001
## 0.9420969 0.01211065 Inf 77.791 <.0001
## 0.9658107 0.00592715 Inf 162.947 <.0001
## 0.9673282 0.00603218 Inf 160.361 <.0001
## 0.9677201 0.00805444 Inf 120.147 <.0001
## 0.9121605 0.01682916 Inf 54.201 <.0001
## 0.3952556 0.04050836 Inf 9.757 <.0001
## 0.9674965 0.00558701 Inf 173.169 <.0001
## 0.9667524 0.00613581 Inf 157.559 <.0001
## 0.9677201 0.00581975 Inf 166.282 <.0001
## 0.9677201 0.00605474 Inf 159.829 <.0001
## 0.9677201 0.00566793 Inf 170.736 <.0001
## 0.9677201 0.00596327 Inf 162.280 <.0001
## 0.9270834 0.02744314 Inf 33.782 <.0001
## 0.9677201 0.00581975 Inf 166.282 <.0001
## 0.9677201 0.00571220 Inf 169.413 <.0001
## 0.9677201 0.00556167 Inf 173.998 <.0001
## 0.9677201 0.00596327 Inf 162.280 <.0001
## 0.9677201 0.00581975 Inf 166.282 <.0001
## 0.9677201 0.00605474 Inf 159.829 <.0001
## 0.9677201 0.00566793 Inf 170.736 <.0001
## 0.9677201 0.00596327 Inf 162.280 <.0001
## 0.9063745 0.03581413 Inf 25.308 <.0001
## 0.9658261 0.00612245 Inf 157.752 <.0001
## 0.9677201 0.00571220 Inf 169.413 <.0001
## 0.9677201 0.00556167 Inf 173.998 <.0001
## 0.9677201 0.00596327 Inf 162.280 <.0001
## 0.9378298 0.01247653 Inf 75.168 <.0001
## 0.9423483 0.01269511 Inf 74.229 <.0001
## 0.9648799 0.00731185 Inf 131.961 <.0001
## 0.9670796 0.00731930 Inf 132.127 <.0001
## 0.6561351 0.08438531 Inf 7.775 <.0001
## 0.9460536 0.01085676 Inf 87.140 <.0001
## 0.9618048 0.00778151 Inf 123.601 <.0001
## 0.9672793 0.00694959 Inf 139.185 <.0001
## 0.9675432 0.00725198 Inf 133.418 <.0001
## 0.7838905 0.03317932 Inf 23.626 <.0001
## 0.9419200 0.01279483 Inf 73.617 <.0001
## 0.9656338 0.00722237 Inf 133.700 <.0001
## 0.9671513 0.00730876 Inf 132.328 <.0001
## 0.9675432 0.00905012 Inf 106.909 <.0001
## 0.9119836 0.01732817 Inf 52.630 <.0001
## 0.3950787 0.04071788 Inf 9.703 <.0001
## 0.9673196 0.00694589 Inf 139.265 <.0001
## 0.9665755 0.00739454 Inf 130.715 <.0001
## 0.9675432 0.00713443 Inf 135.616 <.0001
## 0.9675432 0.00732738 Inf 132.045 <.0001
## 0.9675432 0.00701114 Inf 138.001 <.0001
## 0.9675432 0.00725198 Inf 133.418 <.0001
## 0.9269065 0.02775191 Inf 33.400 <.0001
## 0.9675432 0.00713443 Inf 135.616 <.0001
## 0.9675432 0.00704698 Inf 137.299 <.0001
## 0.9675432 0.00692552 Inf 139.707 <.0001
## 0.9675432 0.00725198 Inf 133.418 <.0001
## 0.9675432 0.00713443 Inf 135.616 <.0001
## 0.9675432 0.00732738 Inf 132.045 <.0001
## 0.9675432 0.00701114 Inf 138.001 <.0001
## 0.9675432 0.00725198 Inf 133.418 <.0001
## 0.9061976 0.03605131 Inf 25.136 <.0001
## 0.9656492 0.00738349 Inf 130.785 <.0001
## 0.9675432 0.00704698 Inf 137.299 <.0001
## 0.9675432 0.00692552 Inf 139.707 <.0001
## 0.9675432 0.00725198 Inf 133.418 <.0001
## 0.0045186 0.01508157 Inf 0.300 1.0000
## 0.0270501 0.01108607 Inf 2.440 1.0000
## 0.0292498 0.01110953 Inf 2.633 1.0000
## -0.2816947 0.08478401 Inf -3.322 0.9114
## 0.0082238 0.01358518 Inf 0.605 1.0000
## 0.0239750 0.01137754 Inf 2.107 1.0000
## 0.0294496 0.01087128 Inf 2.709 0.9998
## 0.0297134 0.01106934 Inf 2.684 0.9999
## -0.1539393 0.03413569 Inf -4.510 0.0586
## 0.0040902 0.01516417 Inf 0.270 1.0000
## 0.0278041 0.01103355 Inf 2.520 1.0000
## 0.0293215 0.01110321 Inf 2.641 1.0000
## 0.0297134 0.01232249 Inf 2.411 1.0000
## -0.0258462 0.01909156 Inf -1.354 1.0000
## -0.5427510 0.04162518 Inf -13.039 <.0001
## 0.0294898 0.01086927 Inf 2.713 0.9998
## 0.0287457 0.01115493 Inf 2.577 1.0000
## 0.0297134 0.01099268 Inf 2.703 0.9999
## 0.0297134 0.01111888 Inf 2.672 0.9999
## 0.0297134 0.01091307 Inf 2.723 0.9998
## 0.0297134 0.01106934 Inf 2.684 0.9999
## -0.0109233 0.02889938 Inf -0.378 1.0000
## 0.0297134 0.01099268 Inf 2.703 0.9999
## 0.0297134 0.01093613 Inf 2.717 0.9998
## 0.0297134 0.01085826 Inf 2.736 0.9998
## 0.0297134 0.01106934 Inf 2.684 0.9999
## 0.0297134 0.01099268 Inf 2.703 0.9999
## 0.0297134 0.01111888 Inf 2.672 0.9999
## 0.0297134 0.01091307 Inf 2.723 0.9998
## 0.0297134 0.01106934 Inf 2.684 0.9999
## -0.0316321 0.03692839 Inf -0.857 1.0000
## 0.0278194 0.01113981 Inf 2.497 1.0000
## 0.0297134 0.01093613 Inf 2.717 0.9998
## 0.0297134 0.01085826 Inf 2.736 0.9998
## 0.0297134 0.01106934 Inf 2.684 0.9999
## 0.0225316 0.01134428 Inf 1.986 1.0000
## 0.0247312 0.01136646 Inf 2.176 1.0000
## -0.2862133 0.08481863 Inf -3.374 0.8826
## 0.0037053 0.01380074 Inf 0.268 1.0000
## 0.0194565 0.01163022 Inf 1.673 1.0000
## 0.0249310 0.01113364 Inf 2.239 1.0000
## 0.0251948 0.01132702 Inf 2.224 1.0000
## -0.1584579 0.03422342 Inf -4.630 0.0362
## -0.0004284 0.01535817 Inf -0.028 1.0000
## 0.0232855 0.01129270 Inf 2.062 1.0000
## 0.0248030 0.01136026 Inf 2.183 1.0000
## 0.0251948 0.01255448 Inf 2.007 1.0000
## -0.0303647 0.01924815 Inf -1.578 1.0000
## -0.5472696 0.04169212 Inf -13.126 <.0001
## 0.0249712 0.01113167 Inf 2.243 1.0000
## 0.0242271 0.01141102 Inf 2.123 1.0000
## 0.0251948 0.01125212 Inf 2.239 1.0000
## 0.0251948 0.01137544 Inf 2.215 1.0000
## 0.0251948 0.01117436 Inf 2.255 1.0000
## 0.0251948 0.01132702 Inf 2.224 1.0000
## -0.0154418 0.02900252 Inf -0.532 1.0000
## 0.0251948 0.01125212 Inf 2.239 1.0000
## 0.0251948 0.01119688 Inf 2.250 1.0000
## 0.0251948 0.01112084 Inf 2.266 1.0000
## 0.0251948 0.01132702 Inf 2.224 1.0000
## 0.0251948 0.01125212 Inf 2.239 1.0000
## 0.0251948 0.01137544 Inf 2.215 1.0000
## 0.0251948 0.01117436 Inf 2.255 1.0000
## 0.0251948 0.01132702 Inf 2.224 1.0000
## -0.0361507 0.03700971 Inf -0.977 1.0000
## 0.0233009 0.01139654 Inf 2.045 1.0000
## 0.0251948 0.01119688 Inf 2.250 1.0000
## 0.0251948 0.01112084 Inf 2.266 1.0000
## 0.0251948 0.01132702 Inf 2.224 1.0000
## 0.0021996 0.00484442 Inf 0.454 1.0000
## -0.3087449 0.08419726 Inf -3.667 0.6363
## -0.0188263 0.00925539 Inf -2.034 1.0000
## -0.0030751 0.00546023 Inf -0.563 1.0000
## 0.0023994 0.00426832 Inf 0.562 1.0000
## 0.0026633 0.00474837 Inf 0.561 1.0000
## -0.1809894 0.03266685 Inf -5.540 0.0004
## -0.0229599 0.01145450 Inf -2.004 1.0000
## 0.0007539 0.00467732 Inf 0.161 1.0000
## 0.0022714 0.00482943 Inf 0.470 1.0000
## 0.0026633 0.00720142 Inf 0.370 1.0000
## -0.0528963 0.01632232 Inf -3.241 0.9465
## -0.5698012 0.04038658 Inf -14.109 <.0001
## 0.0024397 0.00426291 Inf 0.572 1.0000
## 0.0016956 0.00495091 Inf 0.342 1.0000
## 0.0026633 0.00456682 Inf 0.583 1.0000
## 0.0026633 0.00486274 Inf 0.548 1.0000
## 0.0026633 0.00437171 Inf 0.609 1.0000
## 0.0026633 0.00474837 Inf 0.561 1.0000
## -0.0379734 0.02714484 Inf -1.399 1.0000
## 0.0026633 0.00456682 Inf 0.583 1.0000
## 0.0026633 0.00442896 Inf 0.601 1.0000
## 0.0026633 0.00423304 Inf 0.629 1.0000
## 0.0026633 0.00474837 Inf 0.561 1.0000
## 0.0026633 0.00456682 Inf 0.583 1.0000
## 0.0026633 0.00486274 Inf 0.548 1.0000
## 0.0026633 0.00437171 Inf 0.609 1.0000
## 0.0026633 0.00474837 Inf 0.561 1.0000
## -0.0586823 0.03557679 Inf -1.649 1.0000
## 0.0007693 0.00492265 Inf 0.156 1.0000
## 0.0026633 0.00442896 Inf 0.601 1.0000
## 0.0026633 0.00423304 Inf 0.629 1.0000
## 0.0026633 0.00474837 Inf 0.561 1.0000
## -0.3109445 0.08419999 Inf -3.693 0.6099
## -0.0210259 0.00928174 Inf -2.265 1.0000
## -0.0052747 0.00549706 Inf -0.960 1.0000
## 0.0001998 0.00431093 Inf 0.046 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.1831891 0.03267569 Inf -5.606 0.0003
## -0.0251596 0.01147654 Inf -2.192 1.0000
## -0.0014457 0.00471750 Inf -0.306 1.0000
## 0.0000717 0.00486723 Inf 0.015 1.0000
## 0.0004636 0.00722662 Inf 0.064 1.0000
## -0.0550959 0.01634018 Inf -3.372 0.8842
## -0.5720008 0.04038881 Inf -14.162 <.0001
## 0.0002400 0.00430553 Inf 0.056 1.0000
## -0.0005041 0.00498821 Inf -0.101 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00489999 Inf 0.095 1.0000
## 0.0004636 0.00441310 Inf 0.105 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.0401731 0.02715503 Inf -1.479 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00446982 Inf 0.104 1.0000
## 0.0004636 0.00427577 Inf 0.108 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## 0.0004636 0.00460646 Inf 0.101 1.0000
## 0.0004636 0.00489999 Inf 0.095 1.0000
## 0.0004636 0.00441310 Inf 0.105 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## -0.0608819 0.03558510 Inf -1.711 1.0000
## -0.0014304 0.00496084 Inf -0.288 1.0000
## 0.0004636 0.00446982 Inf 0.104 1.0000
## 0.0004636 0.00427577 Inf 0.108 1.0000
## 0.0004636 0.00478650 Inf 0.097 1.0000
## 0.2899186 0.08456503 Inf 3.428 0.8472
## 0.3056698 0.08423661 Inf 3.629 0.6743
## 0.3111443 0.08416885 Inf 3.697 0.6061
## 0.3114081 0.08419462 Inf 3.699 0.6041
## 0.1277554 0.09017914 Inf 1.417 1.0000
## 0.2857849 0.08483340 Inf 3.369 0.8860
## 0.3094988 0.08419024 Inf 3.676 0.6269
## 0.3110162 0.08419915 Inf 3.694 0.6090
## 0.3114081 0.08436852 Inf 3.691 0.6118
## 0.2558486 0.08562443 Inf 2.988 0.9937
## -0.2610563 0.09326387 Inf -2.799 0.9994
## 0.3111845 0.08416859 Inf 3.697 0.6056
## 0.3104404 0.08420608 Inf 3.687 0.6163
## 0.3114081 0.08418458 Inf 3.699 0.6036
## 0.3114081 0.08420115 Inf 3.698 0.6044
## 0.3114081 0.08417422 Inf 3.700 0.6032
## 0.3114081 0.08419462 Inf 3.699 0.6041
## 0.2707714 0.08832957 Inf 3.065 0.9865
## 0.3114081 0.08418458 Inf 3.699 0.6036
## 0.3114081 0.08417721 Inf 3.699 0.6033
## 0.3114081 0.08416713 Inf 3.700 0.6029
## 0.3114081 0.08419462 Inf 3.699 0.6041
## 0.3114081 0.08418458 Inf 3.699 0.6036
## 0.3114081 0.08420115 Inf 3.698 0.6044
## 0.3114081 0.08417422 Inf 3.700 0.6032
## 0.3114081 0.08419462 Inf 3.699 0.6041
## 0.2500626 0.09127318 Inf 2.740 0.9997
## 0.3095142 0.08420423 Inf 3.676 0.6274
## 0.3114081 0.08417721 Inf 3.699 0.6033
## 0.3114081 0.08416713 Inf 3.700 0.6029
## 0.3114081 0.08419462 Inf 3.699 0.6041
## 0.0157512 0.00960478 Inf 1.640 1.0000
## 0.0212257 0.00899504 Inf 2.360 1.0000
## 0.0214896 0.00923322 Inf 2.327 1.0000
## -0.1621631 0.03359168 Inf -4.827 0.0155
## -0.0041337 0.01389108 Inf -0.298 1.0000
## 0.0195802 0.00919182 Inf 2.130 1.0000
## 0.0210977 0.00927412 Inf 2.275 1.0000
## 0.0214896 0.01070354 Inf 2.008 1.0000
## -0.0340700 0.01810126 Inf -1.882 1.0000
## -0.5509749 0.04117045 Inf -13.383 <.0001
## 0.0212660 0.00899259 Inf 2.365 1.0000
## 0.0205219 0.00933644 Inf 2.198 1.0000
## 0.0214896 0.00914118 Inf 2.351 1.0000
## 0.0214896 0.00929256 Inf 2.313 1.0000
## 0.0214896 0.00904528 Inf 2.376 1.0000
## 0.0214896 0.00923322 Inf 2.327 1.0000
## -0.0191471 0.02825387 Inf -0.678 1.0000
## 0.0214896 0.00914118 Inf 2.351 1.0000
## 0.0214896 0.00907309 Inf 2.368 1.0000
## 0.0214896 0.00897908 Inf 2.393 1.0000
## 0.0214896 0.00923322 Inf 2.327 1.0000
## 0.0214896 0.00914118 Inf 2.351 1.0000
## 0.0214896 0.00929256 Inf 2.313 1.0000
## 0.0214896 0.00904528 Inf 2.376 1.0000
## 0.0214896 0.00923322 Inf 2.327 1.0000
## -0.0398560 0.03642651 Inf -1.094 1.0000
## 0.0195956 0.00931909 Inf 2.103 1.0000
## 0.0214896 0.00907309 Inf 2.368 1.0000
## 0.0214896 0.00897908 Inf 2.393 1.0000
## 0.0214896 0.00923322 Inf 2.327 1.0000
## 0.0054745 0.00499699 Inf 1.096 1.0000
## 0.0057384 0.00541303 Inf 1.060 1.0000
## -0.1779143 0.03276578 Inf -5.430 0.0008
## -0.0198849 0.01173766 Inf -1.694 1.0000
## 0.0038290 0.00534910 Inf 0.716 1.0000
## 0.0053465 0.00548393 Inf 0.975 1.0000
## 0.0057384 0.00765600 Inf 0.750 1.0000
## -0.0498212 0.01651917 Inf -3.016 0.9916
## -0.5667261 0.04047309 Inf -14.003 <.0001
## 0.0055148 0.00499240 Inf 1.105 1.0000
## 0.0047706 0.00559070 Inf 0.853 1.0000
## 0.0057384 0.00525450 Inf 1.092 1.0000
## 0.0057384 0.00551363 Inf 1.041 1.0000
## 0.0057384 0.00508583 Inf 1.128 1.0000
## 0.0057384 0.00541303 Inf 1.060 1.0000
## -0.0348983 0.02726439 Inf -1.280 1.0000
## 0.0057384 0.00525450 Inf 1.092 1.0000
## 0.0057384 0.00513513 Inf 1.117 1.0000
## 0.0057384 0.00496714 Inf 1.155 1.0000
## 0.0057384 0.00541303 Inf 1.060 1.0000
## 0.0057384 0.00525450 Inf 1.092 1.0000
## 0.0057384 0.00551363 Inf 1.041 1.0000
## 0.0057384 0.00508583 Inf 1.128 1.0000
## 0.0057384 0.00541303 Inf 1.060 1.0000
## -0.0556072 0.03566738 Inf -1.559 1.0000
## 0.0038444 0.00556491 Inf 0.691 1.0000
## 0.0057384 0.00513513 Inf 1.117 1.0000
## 0.0057384 0.00496714 Inf 1.155 1.0000
## 0.0057384 0.00541303 Inf 1.060 1.0000
## 0.0002638 0.00420226 Inf 0.063 1.0000
## -0.1833889 0.03259554 Inf -5.626 0.0003
## -0.0253594 0.01124601 Inf -2.255 1.0000
## -0.0016455 0.00412365 Inf -0.399 1.0000
## -0.0001280 0.00429402 Inf -0.030 1.0000
## 0.0002638 0.00685364 Inf 0.038 1.0000
## -0.0552957 0.01617932 Inf -3.418 0.8547
## -0.5722006 0.04032353 Inf -14.190 <.0001
## 0.0000402 0.00364502 Inf 0.011 1.0000
## -0.0007039 0.00443072 Inf -0.159 1.0000
## 0.0002638 0.00399598 Inf 0.066 1.0000
## 0.0002638 0.00433108 Inf 0.061 1.0000
## 0.0002638 0.00377145 Inf 0.070 1.0000
## 0.0002638 0.00420226 Inf 0.063 1.0000
## -0.0403728 0.02705849 Inf -1.492 1.0000
## 0.0002638 0.00399598 Inf 0.066 1.0000
## 0.0002638 0.00383767 Inf 0.069 1.0000
## 0.0002638 0.00360979 Inf 0.073 1.0000
## 0.0002638 0.00420226 Inf 0.063 1.0000
## 0.0002638 0.00399598 Inf 0.066 1.0000
## 0.0002638 0.00433108 Inf 0.061 1.0000
## 0.0002638 0.00377145 Inf 0.070 1.0000
## 0.0002638 0.00420226 Inf 0.063 1.0000
## -0.0610817 0.03551154 Inf -1.720 1.0000
## -0.0016301 0.00439996 Inf -0.370 1.0000
## 0.0002638 0.00383767 Inf 0.069 1.0000
## 0.0002638 0.00360979 Inf 0.073 1.0000
## 0.0002638 0.00420226 Inf 0.063 1.0000
## -0.1836527 0.03266223 Inf -5.623 0.0003
## -0.0256232 0.01143750 Inf -2.240 1.0000
## -0.0019093 0.00461869 Inf -0.413 1.0000
## -0.0003919 0.00477127 Inf -0.082 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0555596 0.01631330 Inf -3.406 0.8627
## -0.5724644 0.04037686 Inf -14.178 <.0001
## -0.0002236 0.00419672 Inf -0.053 1.0000
## -0.0009677 0.00489471 Inf -0.198 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.1580295 0.03425981 Inf 4.613 0.0389
## 0.1817433 0.03264936 Inf 5.567 0.0004
## 0.1832608 0.03267357 Inf 5.609 0.0003
## 0.1836527 0.03310793 Inf 5.547 0.0004
## 0.1280931 0.03616618 Inf 3.542 0.7561
## -0.3888117 0.05174557 Inf -7.514 <.0001
## 0.1834291 0.03259488 Inf 5.628 0.0003
## 0.1826850 0.03269095 Inf 5.588 0.0003
## 0.1836527 0.03263634 Inf 5.627 0.0003
## 0.1836527 0.03267906 Inf 5.620 0.0003
## 0.1836527 0.03260961 Inf 5.632 0.0003
## 0.1836527 0.03266223 Inf 5.623 0.0003
## 0.1430160 0.04217566 Inf 3.391 0.8723
## 0.1836527 0.03263634 Inf 5.627 0.0003
## 0.1836527 0.03261733 Inf 5.631 0.0003
## 0.1836527 0.03259130 Inf 5.635 0.0003
## 0.1836527 0.03266223 Inf 5.623 0.0003
## 0.1836527 0.03263634 Inf 5.627 0.0003
## 0.1836527 0.03267906 Inf 5.620 0.0003
## 0.1836527 0.03260961 Inf 5.632 0.0003
## 0.1836527 0.03266223 Inf 5.623 0.0003
## 0.1223071 0.04803313 Inf 2.546 1.0000
## 0.1817587 0.03268543 Inf 5.561 0.0004
## 0.1836527 0.03261733 Inf 5.631 0.0003
## 0.1836527 0.03259130 Inf 5.635 0.0003
## 0.1836527 0.03266223 Inf 5.623 0.0003
## 0.0237139 0.01140345 Inf 2.080 1.0000
## 0.0252313 0.01147041 Inf 2.200 1.0000
## 0.0256232 0.01265424 Inf 2.025 1.0000
## -0.0299364 0.01931277 Inf -1.550 1.0000
## -0.5468412 0.04172251 Inf -13.107 <.0001
## 0.0253996 0.01124406 Inf 2.259 1.0000
## 0.0246555 0.01152066 Inf 2.140 1.0000
## 0.0256232 0.01136333 Inf 2.255 1.0000
## 0.0256232 0.01148545 Inf 2.231 1.0000
## 0.0256232 0.01128633 Inf 2.270 1.0000
## 0.0256232 0.01143750 Inf 2.240 1.0000
## -0.0150135 0.02904550 Inf -0.517 1.0000
## 0.0256232 0.01136333 Inf 2.255 1.0000
## 0.0256232 0.01130863 Inf 2.266 1.0000
## 0.0256232 0.01123334 Inf 2.281 1.0000
## 0.0256232 0.01143750 Inf 2.240 1.0000
## 0.0256232 0.01136333 Inf 2.255 1.0000
## 0.0256232 0.01148545 Inf 2.231 1.0000
## 0.0256232 0.01128633 Inf 2.270 1.0000
## 0.0256232 0.01143750 Inf 2.240 1.0000
## -0.0357223 0.03704334 Inf -0.964 1.0000
## 0.0237292 0.01150629 Inf 2.062 1.0000
## 0.0256232 0.01130863 Inf 2.266 1.0000
## 0.0256232 0.01123334 Inf 2.281 1.0000
## 0.0256232 0.01143750 Inf 2.240 1.0000
## 0.0015175 0.00470209 Inf 0.323 1.0000
## 0.0019093 0.00711658 Inf 0.268 1.0000
## -0.0536502 0.01628734 Inf -3.294 0.9251
## -0.5705551 0.04037077 Inf -14.133 <.0001
## 0.0016857 0.00411804 Inf 0.409 1.0000
## 0.0009416 0.00482692 Inf 0.195 1.0000
## 0.0019093 0.00443183 Inf 0.431 1.0000
## 0.0019093 0.00473620 Inf 0.403 1.0000
## 0.0019093 0.00423050 Inf 0.451 1.0000
## 0.0019093 0.00461869 Inf 0.413 1.0000
## -0.0387273 0.02712364 Inf -1.428 1.0000
## 0.0019093 0.00443183 Inf 0.431 1.0000
## 0.0019093 0.00428963 Inf 0.445 1.0000
## 0.0019093 0.00408704 Inf 0.467 1.0000
## 0.0019093 0.00461869 Inf 0.413 1.0000
## 0.0019093 0.00443183 Inf 0.431 1.0000
## 0.0019093 0.00473620 Inf 0.403 1.0000
## 0.0019093 0.00423050 Inf 0.451 1.0000
## 0.0019093 0.00461869 Inf 0.413 1.0000
## -0.0594362 0.03556079 Inf -1.671 1.0000
## 0.0000154 0.00479817 Inf 0.003 1.0000
## 0.0019093 0.00428963 Inf 0.445 1.0000
## 0.0019093 0.00408704 Inf 0.467 1.0000
## 0.0019093 0.00461869 Inf 0.413 1.0000
## 0.0003919 0.00721654 Inf 0.054 1.0000
## -0.0551677 0.01633595 Inf -3.377 0.8810
## -0.5720726 0.04038693 Inf -14.165 <.0001
## 0.0001683 0.00428860 Inf 0.039 1.0000
## -0.0005758 0.00497361 Inf -0.116 1.0000
## 0.0003919 0.00459062 Inf 0.085 1.0000
## 0.0003919 0.00488510 Inf 0.080 1.0000
## 0.0003919 0.00439657 Inf 0.089 1.0000
## 0.0003919 0.00477127 Inf 0.082 1.0000
## -0.0402448 0.02715247 Inf -1.482 1.0000
## 0.0003919 0.00459062 Inf 0.085 1.0000
## 0.0003919 0.00445350 Inf 0.088 1.0000
## 0.0003919 0.00425870 Inf 0.092 1.0000
## 0.0003919 0.00477127 Inf 0.082 1.0000
## 0.0003919 0.00459062 Inf 0.085 1.0000
## 0.0003919 0.00488510 Inf 0.080 1.0000
## 0.0003919 0.00439657 Inf 0.089 1.0000
## 0.0003919 0.00477127 Inf 0.082 1.0000
## -0.0609537 0.03558316 Inf -1.713 1.0000
## -0.0015021 0.00494619 Inf -0.304 1.0000
## 0.0003919 0.00445350 Inf 0.088 1.0000
## 0.0003919 0.00425870 Inf 0.092 1.0000
## 0.0003919 0.00477127 Inf 0.082 1.0000
## -0.0555596 0.01718828 Inf -3.232 0.9494
## -0.5724644 0.04073824 Inf -14.052 <.0001
## -0.0002236 0.00685025 Inf -0.033 1.0000
## -0.0009677 0.00729874 Inf -0.133 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0406367 0.02767354 Inf -1.468 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## 0.0000000 0.00704325 Inf 0.000 1.0000
## 0.0000000 0.00723863 Inf 0.000 1.0000
## 0.0000000 0.00691833 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.0613455 0.03598245 Inf -1.705 1.0000
## -0.0018940 0.00728017 Inf -0.260 1.0000
## 0.0000000 0.00695465 Inf 0.000 1.0000
## 0.0000000 0.00683155 Inf 0.000 1.0000
## 0.0000000 0.00716230 Inf 0.000 1.0000
## -0.5169049 0.04332407 Inf -11.931 <.0001
## 0.0553360 0.01617801 Inf 3.420 0.8527
## 0.0545919 0.01637064 Inf 3.335 0.9051
## 0.0555596 0.01626138 Inf 3.417 0.8554
## 0.0555596 0.01634696 Inf 3.399 0.8673
## 0.0555596 0.01620767 Inf 3.428 0.8475
## 0.0555596 0.01631330 Inf 3.406 0.8627
## 0.0149229 0.03127326 Inf 0.477 1.0000
## 0.0555596 0.01626138 Inf 3.417 0.8554
## 0.0555596 0.01622320 Inf 3.425 0.8498
## 0.0555596 0.01617081 Inf 3.436 0.8419
## 0.0555596 0.01631330 Inf 3.406 0.8627
## 0.0555596 0.01626138 Inf 3.417 0.8554
## 0.0555596 0.01634696 Inf 3.399 0.8673
## 0.0555596 0.01620767 Inf 3.428 0.8475
## 0.0555596 0.01631330 Inf 3.406 0.8627
## -0.0057860 0.03881233 Inf -0.149 1.0000
## 0.0536656 0.01635953 Inf 3.280 0.9310
## 0.0555596 0.01622320 Inf 3.425 0.8498
## 0.0555596 0.01617081 Inf 3.436 0.8419
## 0.0555596 0.01631330 Inf 3.406 0.8627
## 0.5722408 0.04032291 Inf 14.191 <.0001
## 0.5714967 0.04040231 Inf 14.145 <.0001
## 0.5724644 0.04035591 Inf 14.185 <.0001
## 0.5724644 0.04039047 Inf 14.173 <.0001
## 0.5724644 0.04033429 Inf 14.193 <.0001
## 0.5724644 0.04037686 Inf 14.178 <.0001
## 0.5318278 0.04844599 Inf 10.978 <.0001
## 0.5724644 0.04035591 Inf 14.185 <.0001
## 0.5724644 0.04034054 Inf 14.191 <.0001
## 0.5724644 0.04031950 Inf 14.198 <.0001
## 0.5724644 0.04037686 Inf 14.178 <.0001
## 0.5724644 0.04035591 Inf 14.185 <.0001
## 0.5724644 0.04039047 Inf 14.173 <.0001
## 0.5724644 0.04033429 Inf 14.193 <.0001
## 0.5724644 0.04037686 Inf 14.178 <.0001
## 0.5111189 0.05363180 Inf 9.530 <.0001
## 0.5705705 0.04039991 Inf 14.123 <.0001
## 0.5724644 0.04034054 Inf 14.191 <.0001
## 0.5724644 0.04031950 Inf 14.198 <.0001
## 0.5724644 0.04037686 Inf 14.178 <.0001
## -0.0007441 0.00442548 Inf -0.168 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00432570 Inf 0.052 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0404131 0.02705769 Inf -1.494 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0002236 0.00399015 Inf 0.056 1.0000
## 0.0002236 0.00432570 Inf 0.052 1.0000
## 0.0002236 0.00376527 Inf 0.059 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## -0.0611219 0.03551094 Inf -1.721 1.0000
## -0.0016704 0.00439469 Inf -0.380 1.0000
## 0.0002236 0.00383159 Inf 0.058 1.0000
## 0.0002236 0.00360333 Inf 0.062 1.0000
## 0.0002236 0.00419672 Inf 0.053 1.0000
## 0.0009677 0.00471880 Inf 0.205 1.0000
## 0.0009677 0.00500574 Inf 0.193 1.0000
## 0.0009677 0.00453024 Inf 0.214 1.0000
## 0.0009677 0.00489471 Inf 0.198 1.0000
## -0.0396690 0.02717350 Inf -1.460 1.0000
## 0.0009677 0.00471880 Inf 0.205 1.0000
## 0.0009677 0.00458551 Inf 0.211 1.0000
## 0.0009677 0.00439656 Inf 0.220 1.0000
## 0.0009677 0.00489471 Inf 0.198 1.0000
## 0.0009677 0.00471880 Inf 0.205 1.0000
## 0.0009677 0.00500574 Inf 0.193 1.0000
## 0.0009677 0.00453024 Inf 0.214 1.0000
## 0.0009677 0.00489471 Inf 0.198 1.0000
## -0.0603778 0.03559907 Inf -1.696 1.0000
## -0.0009263 0.00506501 Inf -0.183 1.0000
## 0.0009677 0.00458551 Inf 0.211 1.0000
## 0.0009677 0.00439656 Inf 0.220 1.0000
## 0.0009677 0.00489471 Inf 0.198 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0406367 0.02710757 Inf -1.499 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0406367 0.02715899 Inf -1.496 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00491768 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02707538 Inf -1.501 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00388777 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0406367 0.02713874 Inf -1.497 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0406367 0.02710757 Inf 1.499 1.0000
## 0.0406367 0.02708468 Inf 1.500 1.0000
## 0.0406367 0.02705333 Inf 1.502 1.0000
## 0.0406367 0.02713874 Inf 1.497 1.0000
## 0.0406367 0.02710757 Inf 1.499 1.0000
## 0.0406367 0.02715899 Inf 1.496 1.0000
## 0.0406367 0.02707538 Inf 1.501 1.0000
## 0.0406367 0.02713874 Inf 1.497 1.0000
## -0.0207089 0.04446592 Inf -0.466 1.0000
## 0.0387427 0.02716704 Inf 1.426 1.0000
## 0.0406367 0.02708468 Inf 1.500 1.0000
## 0.0406367 0.02705333 Inf 1.502 1.0000
## 0.0406367 0.02713874 Inf 1.497 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00431309 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## -0.0613455 0.03553156 Inf -1.727 1.0000
## -0.0018940 0.00455588 Inf -0.416 1.0000
## 0.0000000 0.00401527 Inf 0.000 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## -0.0613455 0.03550767 Inf -1.728 1.0000
## -0.0018940 0.00436566 Inf -0.434 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00356766 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0000000 0.00462527 Inf 0.000 1.0000
## 0.0000000 0.00410594 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## -0.0613455 0.03554901 Inf -1.726 1.0000
## -0.0018940 0.00469001 Inf -0.404 1.0000
## 0.0000000 0.00416684 Inf 0.000 1.0000
## 0.0000000 0.00395796 Inf 0.000 1.0000
## 0.0000000 0.00450488 Inf 0.000 1.0000
## 0.0000000 0.00443274 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## -0.0613455 0.03558824 Inf -1.724 1.0000
## -0.0018940 0.00497862 Inf -0.380 1.0000
## 0.0000000 0.00448921 Inf 0.000 1.0000
## 0.0000000 0.00429603 Inf 0.000 1.0000
## 0.0000000 0.00480461 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03552447 Inf -1.727 1.0000
## -0.0018940 0.00450025 Inf -0.421 1.0000
## 0.0000000 0.00395203 Inf 0.000 1.0000
## 0.0000000 0.00373115 Inf 0.000 1.0000
## 0.0000000 0.00430696 Inf 0.000 1.0000
## -0.0613455 0.03557279 Inf -1.725 1.0000
## -0.0018940 0.00486697 Inf -0.389 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
## 0.0000000 0.00468882 Inf 0.000 1.0000
## 0.0594516 0.03559391 Inf 1.670 1.0000
## 0.0613455 0.03553156 Inf 1.727 1.0000
## 0.0613455 0.03550767 Inf 1.728 1.0000
## 0.0613455 0.03557279 Inf 1.725 1.0000
## 0.0018940 0.00455588 Inf 0.416 1.0000
## 0.0018940 0.00436566 Inf 0.434 1.0000
## 0.0018940 0.00486697 Inf 0.389 1.0000
## 0.0000000 0.00379806 Inf 0.000 1.0000
## 0.0000000 0.00436506 Inf 0.000 1.0000
## 0.0000000 0.00416613 Inf 0.000 1.0000
##
## P value adjustment: tukey method for comparing a family of 180 estimates
cld(Proc_marginal, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment Genus emmean SE df
## Artemia/Week 3 Domibacillus 0.0110786 0.00279854 Inf
## Week 0 Exiguobacterium 0.0110786 0.00637028 Inf
## Artemia/Week 2 Acidovorax 0.0110786 0.00351657 Inf
## Zooplankton/Week 4 Acidovorax 0.0110786 0.00335663 Inf
## Zooplankton/Week 2 Cedecea 0.0110786 0.00288715 Inf
## Zooplankton/Week 4 Cedecea 0.0110786 0.00335663 Inf
## Artemia/Week 2 Chryseobacterium 0.0110786 0.00351657 Inf
## Artemia/Week 3 Chryseobacterium 0.0110786 0.00279854 Inf
## Artemia/Week 1 Clostridium_sensu_stricto_1 0.0110786 0.00309448 Inf
## Artemia/Week 2 Clostridium_sensu_stricto_1 0.0110786 0.00351657 Inf
## Week 0 Clostridium_sensu_stricto_1 0.0110786 0.00637028 Inf
## Zooplankton/Week 4 Clostridium_sensu_stricto_1 0.0110786 0.00335663 Inf
## Artemia/Week 1 Collimonas 0.0110786 0.00309448 Inf
## Artemia/Week 2 Collimonas 0.0110786 0.00351657 Inf
## Artemia/Week 3 Collimonas 0.0110786 0.00279854 Inf
## Zooplankton/Week 2 Collimonas 0.0110786 0.00288715 Inf
## Zooplankton/Week 4 Collimonas 0.0110786 0.00335663 Inf
## Artemia/Week 3 Deefgea 0.0110786 0.00279854 Inf
## Zooplankton/Week 3 Deefgea 0.0110786 0.00257654 Inf
## Zooplankton/Week 4 Deefgea 0.0110786 0.00335663 Inf
## Artemia/Week 4 Domibacillus 0.0110786 0.00335663 Inf
## Week 0 Domibacillus 0.0110786 0.00637028 Inf
## Zooplankton/Week 2 Domibacillus 0.0110786 0.00288715 Inf
## Zooplankton/Week 4 Domibacillus 0.0110786 0.00335663 Inf
## Artemia/Week 3 Escherichia/Shigella 0.0110786 0.00279854 Inf
## Zooplankton/Week 2 Escherichia/Shigella 0.0110786 0.00288715 Inf
## Zooplankton/Week 4 Escherichia/Shigella 0.0110786 0.00335663 Inf
## Artemia/Week 3 Exiguobacterium 0.0110786 0.00279854 Inf
## Zooplankton/Week 4 Exiguobacterium 0.0110786 0.00335663 Inf
## Artemia/Week 2 Janthinobacterium 0.0110786 0.00351657 Inf
## Zooplankton/Week 4 Janthinobacterium 0.0110786 0.00335663 Inf
## Artemia/Week 1 Methyloversatilis 0.0110786 0.00309448 Inf
## Artemia/Week 2 Methyloversatilis 0.0110786 0.00351657 Inf
## Artemia/Week 3 Methyloversatilis 0.0110786 0.00279854 Inf
## Artemia/Week 4 Methyloversatilis 0.0110786 0.00335663 Inf
## Zooplankton/Week 2 Methyloversatilis 0.0110786 0.00288715 Inf
## Zooplankton/Week 3 Methyloversatilis 0.0110786 0.00257654 Inf
## Zooplankton/Week 4 Methyloversatilis 0.0110786 0.00335663 Inf
## Zooplankton/Week 4 Pseudomonas 0.0110786 0.00335663 Inf
## Artemia/Week 1 Sphingobacterium 0.0110786 0.00309448 Inf
## Artemia/Week 2 Sphingobacterium 0.0110786 0.00351657 Inf
## Artemia/Week 3 Sphingobacterium 0.0110786 0.00279854 Inf
## Zooplankton/Week 1 Sphingobacterium 0.0110786 0.00309448 Inf
## Artemia/Week 1 Undibacterium 0.0110786 0.00309448 Inf
## Artemia/Week 2 Undibacterium 0.0110786 0.00351657 Inf
## Artemia/Week 3 Undibacterium 0.0110786 0.00279854 Inf
## Zooplankton/Week 2 Undibacterium 0.0110786 0.00288715 Inf
## Zooplankton/Week 4 Undibacterium 0.0110786 0.00335663 Inf
## Artemia/Week 4 Acidovorax 0.0110786 0.00335663 Inf
## Zooplankton/Week 3 Acidovorax 0.0110786 0.00257654 Inf
## Artemia/Week 4 Cedecea 0.0110786 0.00335663 Inf
## Week 0 Cedecea 0.0110786 0.00637028 Inf
## Zooplankton/Week 3 Cedecea 0.0110786 0.00257654 Inf
## Artemia/Week 4 Chryseobacterium 0.0110786 0.00335663 Inf
## Zooplankton/Week 3 Chryseobacterium 0.0110786 0.00257654 Inf
## Artemia/Week 3 Chryseomicrobium 0.0110786 0.00279854 Inf
## Artemia/Week 4 Chryseomicrobium 0.0110786 0.00335663 Inf
## Week 0 Chryseomicrobium 0.0110786 0.00637028 Inf
## Zooplankton/Week 1 Chryseomicrobium 0.0110786 0.00309448 Inf
## Zooplankton/Week 2 Chryseomicrobium 0.0110786 0.00288715 Inf
## Zooplankton/Week 3 Chryseomicrobium 0.0110786 0.00257654 Inf
## Zooplankton/Week 4 Chryseomicrobium 0.0110786 0.00335663 Inf
## Artemia/Week 4 Clostridium_sensu_stricto_1 0.0110786 0.00335663 Inf
## Zooplankton/Week 3 Clostridium_sensu_stricto_1 0.0110786 0.00257654 Inf
## Artemia/Week 4 Collimonas 0.0110786 0.00335663 Inf
## Artemia/Week 4 Deefgea 0.0110786 0.00335663 Inf
## Zooplankton/Week 3 Domibacillus 0.0110786 0.00257654 Inf
## Artemia/Week 4 Enterobacter 0.0110786 0.00335663 Inf
## Week 0 Enterobacter 0.0110786 0.00637028 Inf
## Zooplankton/Week 2 Enterobacter 0.0110786 0.00288715 Inf
## Zooplankton/Week 3 Enterobacter 0.0110786 0.00257654 Inf
## Zooplankton/Week 4 Enterobacter 0.0110786 0.00335663 Inf
## Artemia/Week 4 Escherichia/Shigella 0.0110786 0.00335663 Inf
## Week 0 Escherichia/Shigella 0.0110786 0.00637028 Inf
## Zooplankton/Week 3 Escherichia/Shigella 0.0110786 0.00257654 Inf
## Artemia/Week 4 Exiguobacterium 0.0110786 0.00335663 Inf
## Artemia/Week 4 Janthinobacterium 0.0110786 0.00335663 Inf
## Zooplankton/Week 2 Janthinobacterium 0.0110786 0.00288715 Inf
## Zooplankton/Week 3 Janthinobacterium 0.0110786 0.00257654 Inf
## Week 0 Lelliottia 0.0110786 0.00637028 Inf
## Zooplankton/Week 1 Methyloversatilis 0.0110786 0.00309448 Inf
## Week 0 Shewanella 0.0110786 0.00637028 Inf
## Artemia/Week 4 Sphingobacterium 0.0110786 0.00335663 Inf
## Zooplankton/Week 2 Sphingobacterium 0.0110786 0.00288715 Inf
## Zooplankton/Week 4 Sphingobacterium 0.0110786 0.00335663 Inf
## Artemia/Week 4 Undibacterium 0.0110786 0.00335663 Inf
## Zooplankton/Week 3 Undibacterium 0.0110786 0.00257654 Inf
## Zooplankton/Week 3 Exiguobacterium 0.0110786 0.00257654 Inf
## Zooplankton/Week 3 Sphingobacterium 0.0110786 0.00257654 Inf
## Zooplankton/Week 3 Collimonas 0.0113022 0.00262758 Inf
## Zooplankton/Week 3 Shewanella 0.0113022 0.00262758 Inf
## Zooplankton/Week 3 Pseudomonas 0.0113425 0.00263676 Inf
## Artemia/Week 3 Acidovorax 0.0113451 0.00286465 Inf
## Artemia/Week 3 Clostridium_sensu_stricto_1 0.0113451 0.00286465 Inf
## Artemia/Week 3 Janthinobacterium 0.0113933 0.00287659 Inf
## Zooplankton/Week 1 Collimonas 0.0114085 0.00318500 Inf
## Artemia/Week 1 Chryseobacterium 0.0114085 0.00318500 Inf
## Zooplankton/Week 2 Acidovorax 0.0114149 0.00297322 Inf
## Zooplankton/Week 2 Exiguobacterium 0.0114455 0.00298104 Inf
## Zooplankton/Week 2 Lelliottia 0.0114455 0.00298104 Inf
## Artemia/Week 4 Shewanella 0.0114705 0.00347333 Inf
## Zooplankton/Week 4 Lelliottia 0.0115423 0.00349468 Inf
## Artemia/Week 4 Pseudomonas 0.0115423 0.00349468 Inf
## Zooplankton/Week 1 Domibacillus 0.0115494 0.00322365 Inf
## Zooplankton/Week 4 Aeromonas 0.0115849 0.00350737 Inf
## Artemia/Week 1 Acidovorax 0.0116203 0.00324308 Inf
## Zooplankton/Week 1 Cedecea 0.0117632 0.00328223 Inf
## Zooplankton/Week 3 Lelliottia 0.0118208 0.00274576 Inf
## Artemia/Week 1 Plesiomonas 0.0118597 0.00330865 Inf
## Zooplankton/Week 1 Enterobacter 0.0118758 0.00331305 Inf
## Artemia/Week 2 Plesiomonas 0.0119784 0.00379704 Inf
## Zooplankton/Week 1 Escherichia/Shigella 0.0119999 0.00334701 Inf
## Zooplankton/Week 4 Chryseobacterium 0.0120135 0.00363473 Inf
## Zooplankton/Week 4 Shewanella 0.0120463 0.00364447 Inf
## Week 0 Deefgea 0.0126625 0.00726502 Inf
## Zooplankton/Week 3 Aeromonas 0.0128760 0.00298540 Inf
## Zooplankton/Week 1 Undibacterium 0.0129726 0.00361257 Inf
## Artemia/Week 3 Shewanella 0.0129880 0.00327051 Inf
## Zooplankton/Week 1 Janthinobacterium 0.0132070 0.00367640 Inf
## Zooplankton/Week 1 Acidovorax 0.0133233 0.00370804 Inf
## Zooplankton/Week 1 Lelliottia 0.0133345 0.00371109 Inf
## Zooplankton/Week 2 Chryseobacterium 0.0133798 0.00347363 Inf
## Artemia/Week 3 Cedecea 0.0135546 0.00340980 Inf
## Artemia/Week 3 Pseudomonas 0.0137419 0.00345578 Inf
## Artemia/Week 1 Janthinobacterium 0.0139750 0.00388506 Inf
## Artemia/Week 3 Plesiomonas 0.0140293 0.00352623 Inf
## Artemia/Week 3 Enterobacter 0.0145648 0.00365725 Inf
## Artemia/Week 1 Deefgea 0.0148991 0.00413513 Inf
## Zooplankton/Week 1 Exiguobacterium 0.0157547 0.00436568 Inf
## Zooplankton/Week 1 Plesiomonas 0.0158135 0.00438149 Inf
## Week 0 Aeromonas 0.0161726 0.00922702 Inf
## Zooplankton/Week 1 Chryseobacterium 0.0163379 0.00452227 Inf
## Zooplankton/Week 2 Pseudomonas 0.0168170 0.00433806 Inf
## Artemia/Week 2 Chryseomicrobium 0.0170631 0.00536140 Inf
## Artemia/Week 2 Exiguobacterium 0.0172388 0.00541477 Inf
## Artemia/Week 4 Aeromonas 0.0177093 0.00530407 Inf
## Artemia/Week 1 Lelliottia 0.0177750 0.00490616 Inf
## Week 0 Plesiomonas 0.0189733 0.01076958 Inf
## Artemia/Week 2 Domibacillus 0.0241074 0.00746189 Inf
## Artemia/Week 1 Cedecea 0.0295550 0.00793634 Inf
## Artemia/Week 2 Deefgea 0.0298149 0.00910021 Inf
## Zooplankton/Week 1 Pseudomonas 0.0325682 0.00867584 Inf
## Zooplankton/Week 2 Plesiomonas 0.0327217 0.00812389 Inf
## Artemia/Week 2 Pseudomonas 0.0362735 0.01088163 Inf
## Artemia/Week 2 Shewanella 0.0367018 0.01099703 Inf
## Week 0 Collimonas 0.0380730 0.02064489 Inf
## Artemia/Week 1 Pseudomonas 0.0407920 0.01061778 Inf
## Artemia/Week 1 Enterobacter 0.0413245 0.01073968 Inf
## Zooplankton/Week 1 Clostridium_sensu_stricto_1 0.0484206 0.01232010 Inf
## Artemia/Week 3 Aeromonas 0.0497715 0.01138825 Inf
## Week 0 Sphingobacterium 0.0517153 0.02696127 Inf
## Artemia/Week 2 Cedecea 0.0526119 0.01504292 Inf
## Artemia/Week 1 Domibacillus 0.0574764 0.01422179 Inf
## Zooplankton/Week 2 Deefgea 0.0622698 0.01414436 Inf
## Week 0 Janthinobacterium 0.0628584 0.03168053 Inf
## Zooplankton/Week 1 Shewanella 0.0666382 0.01602185 Inf
## Zooplankton/Week 2 Clostridium_sensu_stricto_1 0.0670830 0.01500790 Inf
## Week 0 Undibacterium 0.0724242 0.03544076 Inf
## Artemia/Week 1 Chryseomicrobium 0.0746743 0.01750550 Inf
## Week 0 Methyloversatilis 0.0764370 0.03694360 Inf
## Artemia/Week 2 Enterobacter 0.0853075 0.02203059 Inf
## Artemia/Week 2 Escherichia/Shigella 0.0917903 0.02323496 Inf
## Zooplankton/Week 1 Deefgea 0.0992322 0.02155502 Inf
## Artemia/Week 1 Exiguobacterium 0.1001785 0.02169796 Inf
## Artemia/Week 2 Lelliottia 0.1052179 0.02556877 Inf
## Week 0 Chryseobacterium 0.1312022 0.05387364 Inf
## Artemia/Week 1 Escherichia/Shigella 0.1647143 0.02970047 Inf
## Artemia/Week 4 Plesiomonas 0.1760897 0.03349961 Inf
## Zooplankton/Week 2 Aeromonas 0.1930785 0.03014502 Inf
## Artemia/Week 1 Shewanella 0.1947313 0.03251711 Inf
## Week 0 Acidovorax 0.2550358 0.07688522 Inf
## Week 0 Pseudomonas 0.3224868 0.08413430 Inf
## Artemia/Week 1 Aeromonas 0.3932470 0.04272462 Inf
## Zooplankton/Week 2 Shewanella 0.5835431 0.04023049 Inf
## Artemia/Week 2 Aeromonas 0.6237642 0.04821144 Inf
## Zooplankton/Week 1 Aeromonas 0.6823863 0.04022163 Inf
## Artemia/Week 4 Lelliottia 0.7079228 0.04242997 Inf
## Artemia/Week 3 Lelliottia 0.9065820 0.01863797 Inf
## Zooplankton/Week 4 Plesiomonas 0.9786218 0.00635402 Inf
## Zooplankton/Week 3 Plesiomonas 0.9787987 0.00483208 Inf
## asymp.LCL asymp.UCL .group
## 0.0009237 0.0212335 a
## -0.0120368 0.0341940 a
## -0.0016817 0.0238390 a
## -0.0011014 0.0232586 a
## 0.0006022 0.0215550 a
## -0.0011014 0.0232586 a
## -0.0016817 0.0238390 a
## 0.0009237 0.0212335 a
## -0.0001501 0.0223074 a
## -0.0016817 0.0238390 a
## -0.0120368 0.0341940 a
## -0.0011014 0.0232586 a
## -0.0001501 0.0223074 a
## -0.0016817 0.0238390 a
## 0.0009237 0.0212335 a
## 0.0006022 0.0215550 a
## -0.0011014 0.0232586 a
## 0.0009237 0.0212335 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## -0.0120368 0.0341940 a
## 0.0006022 0.0215550 a
## -0.0011014 0.0232586 a
## 0.0009237 0.0212335 a
## 0.0006022 0.0215550 a
## -0.0011014 0.0232586 a
## 0.0009237 0.0212335 a
## -0.0011014 0.0232586 a
## -0.0016817 0.0238390 a
## -0.0011014 0.0232586 a
## -0.0001501 0.0223074 a
## -0.0016817 0.0238390 a
## 0.0009237 0.0212335 a
## -0.0011014 0.0232586 a
## 0.0006022 0.0215550 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## -0.0001501 0.0223074 a
## -0.0016817 0.0238390 a
## 0.0009237 0.0212335 a
## -0.0001501 0.0223074 a
## -0.0001501 0.0223074 a
## -0.0016817 0.0238390 a
## 0.0009237 0.0212335 a
## 0.0006022 0.0215550 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0120368 0.0341940 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## 0.0017293 0.0204279 a
## 0.0009237 0.0212335 a
## -0.0011014 0.0232586 a
## -0.0120368 0.0341940 a
## -0.0001501 0.0223074 a
## 0.0006022 0.0215550 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0120368 0.0341940 a
## 0.0006022 0.0215550 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## -0.0120368 0.0341940 a
## 0.0017293 0.0204279 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## 0.0006022 0.0215550 a
## 0.0017293 0.0204279 a
## -0.0120368 0.0341940 a
## -0.0001501 0.0223074 a
## -0.0120368 0.0341940 a
## -0.0011014 0.0232586 a
## 0.0006022 0.0215550 a
## -0.0011014 0.0232586 a
## -0.0011014 0.0232586 a
## 0.0017293 0.0204279 a
## 0.0017293 0.0204279 a
## 0.0017293 0.0204279 a
## 0.0017677 0.0208367 a
## 0.0017677 0.0208367 a
## 0.0017746 0.0209103 a
## 0.0009504 0.0217399 a
## 0.0009504 0.0217399 a
## 0.0009552 0.0218314 a
## -0.0001488 0.0229657 a
## -0.0001488 0.0229657 a
## 0.0006262 0.0222037 a
## 0.0006284 0.0222626 a
## 0.0006284 0.0222626 a
## -0.0011329 0.0240740 a
## -0.0011387 0.0242232 a
## -0.0011387 0.0242232 a
## -0.0001480 0.0232469 a
## -0.0011420 0.0243119 a
## -0.0001476 0.0233883 a
## -0.0001468 0.0236732 a
## 0.0018575 0.0217842 a
## -0.0001462 0.0238656 a
## -0.0001461 0.0238977 a
## -0.0017997 0.0257565 a
## -0.0001452 0.0241450 a
## -0.0011756 0.0252026 a
## -0.0011781 0.0252708 a
## -0.0136996 0.0390246 a
## 0.0020431 0.0237090 a
## -0.0001361 0.0260813 a
## 0.0011205 0.0248555 a
## -0.0001333 0.0265473 a
## -0.0001318 0.0267784 a
## -0.0001317 0.0268007 a
## 0.0007752 0.0259843 a
## 0.0011816 0.0259275 a
## 0.0012021 0.0262817 a
## -0.0001224 0.0280725 a
## 0.0012339 0.0268247 a
## 0.0012940 0.0278357 a
## -0.0001057 0.0299040 a
## -0.0000867 0.0315962 a
## -0.0000853 0.0317124 a
## -0.0173089 0.0496542 a
## -0.0000717 0.0327476 a
## 0.0010757 0.0325582 a
## -0.0023915 0.0365177 a
## -0.0024094 0.0368870 a
## -0.0015373 0.0369558 a
## -0.0000276 0.0355777 a
## -0.0201056 0.0580522 ab
## -0.0029691 0.0511839 ab
## 0.0007569 0.0583531 abc
## -0.0032064 0.0628363 abc
## 0.0010867 0.0640497 abc
## 0.0032430 0.0622003 abc
## -0.0032120 0.0757589 abc
## -0.0032024 0.0766061 abc
## -0.0368398 0.1129858 abcde
## 0.0022640 0.0793201 abcd
## 0.0023542 0.0802949 abcd
## 0.0037154 0.0931257 abcde
## 0.0084477 0.0910953 abcde
## -0.0461173 0.1495480 abcde
## -0.0019734 0.1071972 abcde
## 0.0058707 0.1090821 abcde
## 0.0109451 0.1135946 abcde
## -0.0520988 0.1778155 abcde
## 0.0085007 0.1247757 abcde
## 0.0126248 0.1215412 abcde
## -0.0561775 0.2010258 abcde
## 0.0111532 0.1381954 abcde
## -0.0576179 0.2104919 abcde
## 0.0053665 0.1652485 abcde
## 0.0074791 0.1761015 abcde
## 0.0210169 0.1774476 abcde
## 0.0214445 0.1789125 abcde
## 0.0124381 0.1979977 abcde
## -0.0642856 0.3266901 abcdef
## 0.0569421 0.2724865 cdef
## 0.0545318 0.2976476 bcdef
## 0.0836932 0.3024638 ef
## 0.0767386 0.3127241 def
## -0.0239527 0.5340243 abcdefg
## 0.0171940 0.6277795 abcdefgh
## 0.2382149 0.5482791 fg
## 0.4375612 0.7295249 gh
## 0.4488224 0.7987060 gh
## 0.5364367 0.8283360 h
## 0.5539599 0.8618858 hi
## 0.8389516 0.9742124 ij
## 0.9555654 1.0016782 j
## 0.9612648 0.9963326 j
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 180 estimates
## P value adjustment: tukey method for comparing a family of 180 estimates
## significance level used: alpha = 0.05
Week0 vs. ART W1:
#Core microbiota was viewed from W0-->W4 chronologically, where W1 was compared to W0, W2 core was compared to W1 core, W3 to W2, etc... ALL core microbiota for each comparison was calculated and then the larger week / smaller week = 'Log2' column.
CH_2_W0ART1_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/Week0_ARTW1_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_W0ART1_Compare_log2fc<-log2(CH_2_W0ART1_Compare$Log2)
CH_2_W0ART1_Compare_Graph<-ggplot(CH_2_W0ART1_Compare, aes(Genus, CH_2_W0ART1_Compare_log2fc)) + geom_point(shape=18, size = 8) + ylim(-15,15) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Week 0 --> Artemia Week 1") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
CH_2_W0ART1_Compare_Graph
## Warning: Removed 21 rows containing missing values (geom_point).
ART W1 vs. W2
CH_2_ARTW1W2_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW1_ARTW2_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_ARTW1W2_log2fc<-log2(CH_2_ARTW1W2_Compare$Log2)
ARTW1W2_Compare_Graph<-ggplot(CH_2_ARTW1W2_Compare, aes(Genus, CH_2_ARTW1W2_log2fc)) + geom_point(shape=18, size = 8) + ylim(-15,15) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Artemia Week 1 --> Artemia Week 2") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
ARTW1W2_Compare_Graph
## Warning: Removed 9 rows containing missing values (geom_point).
ART W2 vs. W3
CH_2_ARTW2W3_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW2_ARTW3_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_ARTW2W3_log2fc<-log2(CH_2_ARTW2W3_Compare$Log2)
ARTW2W3_Compare_Graph<-ggplot(CH_2_ARTW2W3_Compare, aes(Genus, CH_2_ARTW2W3_log2fc)) + geom_point(shape=18, size = 8) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Artemia Week 2 --> Artemia Week 3") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
ARTW2W3_Compare_Graph
## Warning: Removed 6 rows containing missing values (geom_point).
ART W3 vs. W4
CH_2_ARTW3W4_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW3_ARTW4_Log2.csv", header=TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ARTW3_ARTW4_Log2.csv'
CH_2_ARTW3W4_log2fc<-log2(CH_2_ARTW3W4_Compare$Log2)
ARTW3W4_Compare_Graph<-ggplot(CH_2_ARTW3W4_Compare, aes(Genus, CH_2_ARTW3W4_log2fc)) + geom_point(shape=18, size = 8) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Artemia Week 3 --> Artemia Week 4") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
ARTW3W4_Compare_Graph
## Warning: Removed 2 rows containing missing values (geom_point).
ART W3 vs. W4 (CONTAM)
CH_2_ARTW3W4_C_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ARTW3_ARTW4_C_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_ARTW3W4_C_log2fc<-log2(CH_2_ARTW3W4_C_Compare$Log2)
CH_2_ARTW3W4_C_Graph<-ggplot(CH_2_ARTW3W4_C_Compare, aes(Genus, CH_2_ARTW3W4_C_log2fc)) + geom_point(shape=18, size = 8) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Artemia Week 3 --> Artemia Week 4 (Contamination)") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
CH_2_ARTW3W4_C_Graph
## Warning: Removed 3 rows containing missing values (geom_point).
ggarrange(CH_2_W0ART1_Compare_Graph, ARTW1W2_Compare_Graph, ARTW2W3_Compare_Graph, ARTW3W4_Compare_Graph, CH_2_ARTW3W4_C_Graph, labels = c("A", "B", "C", "D", "E"))
## Warning: Removed 21 rows containing missing values (geom_point).
## Warning: Removed 9 rows containing missing values (geom_point).
## Warning: Removed 6 rows containing missing values (geom_point).
## Warning: Removed 2 rows containing missing values (geom_point).
## Warning: Removed 3 rows containing missing values (geom_point).
Week0 vs. ZOOP W1:
CH_2_W0ZOOP1_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/Week0_ZOOPW1_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_W0ZOOP1_Compare_log2fc<-log2(CH_2_W0ZOOP1_Compare$Log2)
CH_2_W0ZOOP1_Compare_Graph<-ggplot(CH_2_W0ZOOP1_Compare, aes(Genus, CH_2_W0ZOOP1_Compare_log2fc)) + geom_point(shape=18, size = 8) + ylim(-15,15) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Week 0 --> Zooplankton Week 1") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
CH_2_W0ZOOP1_Compare_Graph
## Warning: Removed 12 rows containing missing values (geom_point).
ZOOP W1 vs. W2
CH_2_ZOOPW1W2_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW1_ZOOPW2_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_ZOOPW1W2_log2fc<-log2(CH_2_ZOOPW1W2_Compare$Log2)
CH_2_ZOOPW1W2_Graph<-ggplot(CH_2_ZOOPW1W2_Compare, aes(Genus, CH_2_ZOOPW1W2_log2fc)) + geom_point(shape=18, size = 8) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Zooplankton Week 1 --> Zooplankton Week 2") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
CH_2_ZOOPW1W2_Graph
## Warning: Removed 4 rows containing missing values (geom_point).
ZOOP W2 vs. W3
CH_2_ZOOPW2W3_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW2_ZOOPW3_Log2.csv", header=TRUE, check.names = FALSE)
CH_2_ZOOPW2W3_log2fc<-log2(CH_2_ZOOPW2W3_Compare$Log2)
CH_2_ZOOPW2W3_Graph<-ggplot(CH_2_ZOOPW2W3_Compare, aes(Genus, CH_2_ZOOPW2W3_log2fc)) + geom_point(shape=18, size = 8) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Zooplankton Week 2 --> Zooplankton Week 3") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
CH_2_ZOOPW2W3_Graph
## Warning: Removed 5 rows containing missing values (geom_point).
ZOOP W3 vs. W4
CH_2_ZOOPW3W4_Compare<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/ZOOPW3_ZOOPW4_Log2.csv", header=TRUE, check.names = FALSE)
## Warning in read.table(file = file, header = header, sep = sep, quote
## = quote, : incomplete final line found by readTableHeader on '~/
## Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Core_Microbiome/
## ZOOPW3_ZOOPW4_Log2.csv'
CH_2_ZOOPW3W4_log2fc<-log2(CH_2_ZOOPW3W4_Compare$Log2)
CH_2_ZOOPW3W4_Graph<-ggplot(CH_2_ZOOPW3W4_Compare, aes(Genus, CH_2_ZOOPW3W4_log2fc)) + geom_point(shape=18, size = 8) + theme_classic() + labs(y = "Log2-Fold Change", title = "Log2-Fold Change of Core Gut Microbiota", subtitle = "Zooplankton Week 3 --> Zooplankton Week 4") + theme(axis.text.x = element_text(angle=315, vjust = -0.25, hjust = .25))+ geom_hline(yintercept = 0) + geom_hline(yintercept = -1, linetype = "dashed") + geom_hline(yintercept = 1, linetype = "dashed")
CH_2_ZOOPW3W4_Graph
## Warning: Removed 1 rows containing missing values (geom_point).
ggarrange( CH_2_W0ZOOP1_Compare_Graph ,CH_2_ZOOPW1W2_Graph, CH_2_ZOOPW2W3_Graph, CH_2_ZOOPW3W4_Graph, labels = c("A", "B", "C", "D"))
## Warning: Removed 12 rows containing missing values (geom_point).
## Warning: Removed 4 rows containing missing values (geom_point).
## Warning: Removed 5 rows containing missing values (geom_point).
## Warning: Removed 1 rows containing missing values (geom_point).
#Load All Fish Community Data
CH_2_Tax4Fun_ASVs<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/ASV_COMBINED_CH_2_NORMAL.csv", header=TRUE, check.names=FALSE, row.names=1)
CH_2_Tax4Fun_ASVs_t<-as.data.frame(t(CH_2_Tax4Fun_ASVs))
BEN<-list(CH_2_Tax4Fun_ASVs_t, CH_2_taxa)
###Note CH_2_taxa is same file from CH_2_Alpha_Diversity.Rmd (e.g. full taxonomy)
names(BEN)<-paste("name", 1:2, sep = "")
tmp <- tempdir()
download_ref(tmp,reference='silva_ko',overwrite=FALSE)
FUNCTIONS <- t4f(BEN$name1, rows_are_taxa=FALSE, tax_table = BEN$name2, reference_path = tmp, type = 'uproc', short=TRUE, cn_normalize = TRUE, sample_normalize =TRUE, drop=TRUE)
write.csv(FUNCTIONS$fxn_table, "FUNCTIONS_FXN_TABLE.csv")
write.csv(FUNCTIONS$method_meta, "FUNCTIONS_METHOD_META.csv")
write.csv(FUNCTIONS$fxn_meta$KEGG_Description, "FUNCTIONS_FXN_META_KEGG_DESCRIPTION.csv")
write.csv(FUNCTIONS$fxn_meta$KEGG_Pathways, "FUNCTIONS_FXN_META_KEGG_PATHWAYS.csv")
Function Bar Graph (Top 10 KO’s):
head(sort(colSums(FUNCTIONS$fxn_table), decreasing = TRUE), n = 20)
## K03406 K07347 K02035 K02015 K00123 K15125 K01652
## 0.6508929 0.2988644 0.2122598 0.2006173 0.1978112 0.1896744 0.1696450
## K03046 K00265 K03043 K00059 K08300 K00656 K00615
## 0.1674308 0.1673358 0.1607591 0.1593548 0.1585897 0.1511164 0.1506160
## K02337 K00525 K01952 K01955 K02016 K03723
## 0.1440901 0.1413348 0.1394340 0.1316229 0.1293549 0.1234606
###Determine's Top 10 KO Hits - Fill out CH_2_Tax4Fun_Analysis_ForR.csv with average ASV Relative abundance values (+/- SE), function category (Unknown w/ enzyme function if no function found), and Treatment (All Fish treatments)###
#ENV Information Processing ONLY
CH_2_Tax4Fun_function_ENV_SIG<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_ENV_SIGNAL.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_ENV_SIG$Treatment<-factor(CH_2_Tax4Fun_function_ENV_SIG$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_ENV_SIG<-ggplot(data = CH_2_Tax4Fun_function_ENV_SIG, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions", subtitle = "Environmental Information Processing (Signal Transduction)", y = "Relative Gene Abundance") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("A","A", "A", "A", "A", "A", "A", "A", "A"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4")) + theme(plot.subtitle = element_text(size=8))
#Cellular Processes ONLY
CH_2_Tax4Fun_function_Cell_Proc<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_Cell_Proc.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_Cell_Proc$Treatment<-factor(CH_2_Tax4Fun_function_Cell_Proc$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_Cell_Proc<-ggplot(data = CH_2_Tax4Fun_function_Cell_Proc, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions", subtitle = "Cellular Processes (Motility)", y = "") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("A","A", "A", "A", "A", "A", "A", "A", "A"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4"))
#Metabolic Pathways ONLY
CH_2_Tax4Fun_function_Metab<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_Metab.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_Metab$Treatment<-factor(CH_2_Tax4Fun_function_Metab$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_Metab<-ggplot(data = CH_2_Tax4Fun_function_Metab, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions", subtitle = "Metabolic Pathways", y = "Relative Gene Abundance") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("CDE","DE", "A", "ABC", "ABCDE", "ABCD", "E", "AB", "BCDE"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4"))
#Genetic Information ONLY
CH_2_Tax4Fun_function_Gen<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_Gen.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_Gen$Treatment<-factor(CH_2_Tax4Fun_function_Gen$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_Gen<-ggplot(data = CH_2_Tax4Fun_function_Gen, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions", subtitle = "Genetic Information Processing (Replication + Repair or Transcription", y = "") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("CD","BC", "A", "AB", "ABCD", "AB", "D", "A", "ABC"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4"))
#ALL
ggarrange(CH_2_Tax4Fun_function_Graph_ENV_SIG, CH_2_Tax4Fun_function_Graph_Cell_Proc, CH_2_Tax4Fun_function_Graph_Metab, CH_2_Tax4Fun_function_Graph_Gen, ncol=2, nrow=2, common.legend = TRUE, legend = c("right"), labels = c("A", "B", "C", "D"))
## Warning: Removed 1 rows containing missing values (geom_errorbar).
## Warning: Removed 1 rows containing missing values (geom_errorbar).
## Warning: Removed 1 rows containing missing values (geom_errorbar).
## Warning: Removed 1 rows containing missing values (geom_errorbar).
## Warning: Removed 1 rows containing missing values (geom_errorbar).
Significance per KO between Treatments
#Export Data for 1st KO (Environmental Information Processing)
#File name = CH_2_KO_Env_Processing.csv
#Environmental Information Processing (Signal Transduction or Membrane Transport or Prokaryote Community Processes
CH_2_KO_Env_Processing<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_KO_Env_Processing.csv", header = TRUE, check.names = FALSE)
CH_2_KO_Env_Processing_beta<-fitdist(CH_2_KO_Env_Processing$Environmental_Info, "beta")
cdfcomp(CH_2_KO_Env_Processing_beta, legendtext = "beta")
CH_2_KO_Env_Processing_beta_dist<-betareg(CH_2_KO_Env_Processing$Environmental_Info ~ Treatment, data=CH_2_KO_Env_Processing)
summary(CH_2_KO_Env_Processing_beta_dist)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing$Environmental_Info ~ Treatment,
## data = CH_2_KO_Env_Processing)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -6.1948 -0.1514 0.0597 0.4387 3.3053
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -4.974525 0.041617 -119.532 <2e-16 ***
## TreatmentArtemiaW2 0.044648 0.062302 0.717 0.474
## TreatmentArtemiaW3 -0.070704 0.056874 -1.243 0.214
## TreatmentArtemiaW4 -0.059803 0.159874 -0.374 0.708
## TreatmentNo Food -0.024593 0.096978 -0.254 0.800
## TreatmentZooplanktonW1 0.093814 0.057510 1.631 0.103
## TreatmentZooplanktonW2 0.009282 0.056696 0.164 0.870
## TreatmentZooplanktonW3 0.058914 0.056074 1.051 0.293
## TreatmentZooplanktonW4 -0.096168 0.069395 -1.386 0.166
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 6452.2 942.8 6.843 7.73e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 513.7 on 10 Df
## Pseudo R-squared: 0.124
## Number of iterations: 138 (BFGS) + 4 (Fisher scoring)
Anova(CH_2_KO_Env_Processing_beta_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing$Environmental_Info
## Df Chisq Pr(>Chisq)
## (Intercept) 1 14287.995 < 2e-16 ***
## Treatment 8 15.096 0.05731 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Env_Proc_marginal<-emmeans(CH_2_KO_Env_Processing_beta_dist, ~ Treatment)
pairs(Env_Proc_marginal, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 -0.0003111749 0.0004354317 Inf -0.715
## ArtemiaW1 - ArtemiaW3 0.0004655769 0.0003757865 Inf 1.239
## ArtemiaW1 - ArtemiaW4 0.0003958970 0.0010317932 Inf 0.384
## ArtemiaW1 - No Food 0.0001656390 0.0006482162 Inf 0.256
## ArtemiaW1 - ZooplanktonW1 -0.0006700610 0.0004106206 Inf -1.632
## ArtemiaW1 - ZooplanktonW2 -0.0000635675 0.0003881586 Inf -0.164
## ArtemiaW1 - ZooplanktonW3 -0.0004135264 0.0003927239 Inf -1.053
## ArtemiaW1 - ZooplanktonW4 0.0006254555 0.0004460997 Inf 1.402
## ArtemiaW2 - ArtemiaW3 0.0007767518 0.0004124092 Inf 1.883
## ArtemiaW2 - ArtemiaW4 0.0007070719 0.0010456879 Inf 0.676
## ArtemiaW2 - No Food 0.0004768139 0.0006701120 Inf 0.712
## ArtemiaW2 - ZooplanktonW1 -0.0003588861 0.0004443817 Inf -0.808
## ArtemiaW2 - ZooplanktonW2 0.0002476075 0.0004237133 Inf 0.584
## ArtemiaW2 - ZooplanktonW3 -0.0001023515 0.0004278994 Inf -0.239
## ArtemiaW2 - ZooplanktonW4 0.0009366304 0.0004773581 Inf 1.962
## ArtemiaW3 - ArtemiaW4 -0.0000696800 0.0010222905 Inf -0.068
## ArtemiaW3 - No Food -0.0002999379 0.0006329809 Inf -0.474
## ArtemiaW3 - ZooplanktonW1 -0.0011356379 0.0003861215 Inf -2.941
## ArtemiaW3 - ZooplanktonW2 -0.0005291444 0.0003621431 Inf -1.461
## ArtemiaW3 - ZooplanktonW3 -0.0008791034 0.0003670321 Inf -2.395
## ArtemiaW3 - ZooplanktonW4 0.0001598786 0.0004236573 Inf 0.377
## ArtemiaW4 - No Food -0.0002302579 0.0011506722 Inf -0.200
## ArtemiaW4 - ZooplanktonW1 -0.0010659580 0.0010356020 Inf -1.029
## ArtemiaW4 - ZooplanktonW2 -0.0004594644 0.0010269028 Inf -0.447
## ArtemiaW4 - ZooplanktonW3 -0.0008094234 0.0010286371 Inf -0.787
## ArtemiaW4 - ZooplanktonW4 0.0002295585 0.0010501749 Inf 0.219
## No Food - ZooplanktonW1 -0.0008357000 0.0006542619 Inf -1.277
## No Food - ZooplanktonW2 -0.0002292065 0.0006404034 Inf -0.358
## No Food - ZooplanktonW3 -0.0005791655 0.0006431807 Inf -0.900
## No Food - ZooplanktonW4 0.0004598165 0.0006770925 Inf 0.679
## ZooplanktonW1 - ZooplanktonW2 0.0006064935 0.0003981726 Inf 1.523
## ZooplanktonW1 - ZooplanktonW3 0.0002565346 0.0004026244 Inf 0.637
## ZooplanktonW1 - ZooplanktonW4 0.0012955165 0.0004548399 Inf 2.848
## ZooplanktonW2 - ZooplanktonW3 -0.0003499590 0.0003796896 Inf -0.922
## ZooplanktonW2 - ZooplanktonW4 0.0006890230 0.0004346689 Inf 1.585
## ZooplanktonW3 - ZooplanktonW4 0.0010389819 0.0004387506 Inf 2.368
## p.value
## 0.9986
## 0.9479
## 1.0000
## 1.0000
## 0.7874
## 1.0000
## 0.9805
## 0.8975
## 0.6253
## 0.9991
## 0.9987
## 0.9967
## 0.9997
## 1.0000
## 0.5701
## 1.0000
## 0.9999
## 0.0792
## 0.8735
## 0.2864
## 1.0000
## 1.0000
## 0.9831
## 1.0000
## 0.9972
## 1.0000
## 0.9381
## 1.0000
## 0.9930
## 0.9990
## 0.8450
## 0.9994
## 0.1017
## 0.9918
## 0.8133
## 0.3017
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Env_Proc_marginal, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ZooplanktonW4 0.006238901 0.0003446179 Inf 0.005285850 0.007191952 a
## ArtemiaW3 0.006398780 0.0002469251 Inf 0.005715901 0.007081659 a
## ArtemiaW4 0.006468460 0.0009921460 Inf 0.003724651 0.009212269 a
## No Food 0.006698718 0.0005830443 Inf 0.005086291 0.008311144 a
## ArtemiaW1 0.006864357 0.0002837098 Inf 0.006079749 0.007648965 a
## ZooplanktonW2 0.006927924 0.0002653741 Inf 0.006194024 0.007661824 a
## ArtemiaW2 0.007175532 0.0003306917 Inf 0.006260994 0.008090070 a
## ZooplanktonW3 0.007277883 0.0002720078 Inf 0.006525638 0.008030129 a
## ZooplanktonW1 0.007534418 0.0002972632 Inf 0.006712328 0.008356508 a
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Cellular Processes (Motility)
CH_2_KO_Cell_Proc_beta<-fitdist(CH_2_KO_Env_Processing$Cellular_Proc, "beta")
cdfcomp(CH_2_KO_Cell_Proc_beta, legendtext = "beta")
CH_2_KO_Cell_Proc_beta_dist<-betareg(CH_2_KO_Env_Processing$Cellular_Proc ~ Treatment, data=CH_2_KO_Env_Processing)
summary(CH_2_KO_Cell_Proc_beta_dist)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing$Cellular_Proc ~ Treatment,
## data = CH_2_KO_Env_Processing)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -6.1948 -0.1514 0.0597 0.4387 3.3053
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -4.974525 0.041617 -119.532 <2e-16 ***
## TreatmentArtemiaW2 0.044648 0.062302 0.717 0.474
## TreatmentArtemiaW3 -0.070704 0.056874 -1.243 0.214
## TreatmentArtemiaW4 -0.059803 0.159874 -0.374 0.708
## TreatmentNo Food -0.024593 0.096978 -0.254 0.800
## TreatmentZooplanktonW1 0.093814 0.057510 1.631 0.103
## TreatmentZooplanktonW2 0.009282 0.056696 0.164 0.870
## TreatmentZooplanktonW3 0.058914 0.056074 1.051 0.293
## TreatmentZooplanktonW4 -0.096168 0.069395 -1.386 0.166
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 6452.2 942.8 6.843 7.73e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 513.7 on 10 Df
## Pseudo R-squared: 0.124
## Number of iterations: 138 (BFGS) + 4 (Fisher scoring)
Anova(CH_2_KO_Cell_Proc_beta_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing$Cellular_Proc
## Df Chisq Pr(>Chisq)
## (Intercept) 1 14287.995 < 2e-16 ***
## Treatment 8 15.096 0.05731 .
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Cell_Proc_marginal<-emmeans(CH_2_KO_Cell_Proc_beta_dist, ~ Treatment)
pairs(Cell_Proc_marginal, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 -0.0003111749 0.0004354317 Inf -0.715
## ArtemiaW1 - ArtemiaW3 0.0004655769 0.0003757865 Inf 1.239
## ArtemiaW1 - ArtemiaW4 0.0003958970 0.0010317932 Inf 0.384
## ArtemiaW1 - No Food 0.0001656390 0.0006482162 Inf 0.256
## ArtemiaW1 - ZooplanktonW1 -0.0006700610 0.0004106206 Inf -1.632
## ArtemiaW1 - ZooplanktonW2 -0.0000635675 0.0003881586 Inf -0.164
## ArtemiaW1 - ZooplanktonW3 -0.0004135264 0.0003927239 Inf -1.053
## ArtemiaW1 - ZooplanktonW4 0.0006254555 0.0004460997 Inf 1.402
## ArtemiaW2 - ArtemiaW3 0.0007767518 0.0004124092 Inf 1.883
## ArtemiaW2 - ArtemiaW4 0.0007070719 0.0010456879 Inf 0.676
## ArtemiaW2 - No Food 0.0004768139 0.0006701120 Inf 0.712
## ArtemiaW2 - ZooplanktonW1 -0.0003588861 0.0004443817 Inf -0.808
## ArtemiaW2 - ZooplanktonW2 0.0002476075 0.0004237133 Inf 0.584
## ArtemiaW2 - ZooplanktonW3 -0.0001023515 0.0004278994 Inf -0.239
## ArtemiaW2 - ZooplanktonW4 0.0009366304 0.0004773581 Inf 1.962
## ArtemiaW3 - ArtemiaW4 -0.0000696800 0.0010222905 Inf -0.068
## ArtemiaW3 - No Food -0.0002999379 0.0006329809 Inf -0.474
## ArtemiaW3 - ZooplanktonW1 -0.0011356379 0.0003861215 Inf -2.941
## ArtemiaW3 - ZooplanktonW2 -0.0005291444 0.0003621431 Inf -1.461
## ArtemiaW3 - ZooplanktonW3 -0.0008791034 0.0003670321 Inf -2.395
## ArtemiaW3 - ZooplanktonW4 0.0001598786 0.0004236573 Inf 0.377
## ArtemiaW4 - No Food -0.0002302579 0.0011506722 Inf -0.200
## ArtemiaW4 - ZooplanktonW1 -0.0010659580 0.0010356020 Inf -1.029
## ArtemiaW4 - ZooplanktonW2 -0.0004594644 0.0010269028 Inf -0.447
## ArtemiaW4 - ZooplanktonW3 -0.0008094234 0.0010286371 Inf -0.787
## ArtemiaW4 - ZooplanktonW4 0.0002295585 0.0010501749 Inf 0.219
## No Food - ZooplanktonW1 -0.0008357000 0.0006542619 Inf -1.277
## No Food - ZooplanktonW2 -0.0002292065 0.0006404034 Inf -0.358
## No Food - ZooplanktonW3 -0.0005791655 0.0006431807 Inf -0.900
## No Food - ZooplanktonW4 0.0004598165 0.0006770925 Inf 0.679
## ZooplanktonW1 - ZooplanktonW2 0.0006064935 0.0003981726 Inf 1.523
## ZooplanktonW1 - ZooplanktonW3 0.0002565346 0.0004026244 Inf 0.637
## ZooplanktonW1 - ZooplanktonW4 0.0012955165 0.0004548399 Inf 2.848
## ZooplanktonW2 - ZooplanktonW3 -0.0003499590 0.0003796896 Inf -0.922
## ZooplanktonW2 - ZooplanktonW4 0.0006890230 0.0004346689 Inf 1.585
## ZooplanktonW3 - ZooplanktonW4 0.0010389819 0.0004387506 Inf 2.368
## p.value
## 0.9986
## 0.9479
## 1.0000
## 1.0000
## 0.7874
## 1.0000
## 0.9805
## 0.8975
## 0.6253
## 0.9991
## 0.9987
## 0.9967
## 0.9997
## 1.0000
## 0.5701
## 1.0000
## 0.9999
## 0.0792
## 0.8735
## 0.2864
## 1.0000
## 1.0000
## 0.9831
## 1.0000
## 0.9972
## 1.0000
## 0.9381
## 1.0000
## 0.9930
## 0.9990
## 0.8450
## 0.9994
## 0.1017
## 0.9918
## 0.8133
## 0.3017
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Cell_Proc_marginal, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ZooplanktonW4 0.006238901 0.0003446179 Inf 0.005285850 0.007191952 a
## ArtemiaW3 0.006398780 0.0002469251 Inf 0.005715901 0.007081659 a
## ArtemiaW4 0.006468460 0.0009921460 Inf 0.003724651 0.009212269 a
## No Food 0.006698718 0.0005830443 Inf 0.005086291 0.008311144 a
## ArtemiaW1 0.006864357 0.0002837098 Inf 0.006079749 0.007648965 a
## ZooplanktonW2 0.006927924 0.0002653741 Inf 0.006194024 0.007661824 a
## ArtemiaW2 0.007175532 0.0003306917 Inf 0.006260994 0.008090070 a
## ZooplanktonW3 0.007277883 0.0002720078 Inf 0.006525638 0.008030129 a
## ZooplanktonW1 0.007534418 0.0002972632 Inf 0.006712328 0.008356508 a
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Metabolic
CH_2_Metabolic_beta<-fitdist(CH_2_KO_Env_Processing$Metabolic, "beta")
cdfcomp(CH_2_Metabolic_beta, legendtext = "beta")
CH_2_Metabolic_beta_dist<-betareg(CH_2_KO_Env_Processing$Metabolic ~ Treatment, data=CH_2_KO_Env_Processing)
summary(CH_2_Metabolic_beta_dist)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing$Metabolic ~ Treatment,
## data = CH_2_KO_Env_Processing)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -2.1689 -0.5856 -0.1978 0.3042 3.5202
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -4.033302 0.010889 -370.389 < 2e-16 ***
## TreatmentArtemiaW2 -0.069057 0.016832 -4.103 4.09e-05 ***
## TreatmentArtemiaW3 -0.048644 0.014817 -3.283 0.001027 **
## TreatmentArtemiaW4 -0.030893 0.041311 -0.748 0.454563
## TreatmentNo Food 0.028618 0.024867 1.151 0.249794
## TreatmentZooplanktonW1 -0.045429 0.015571 -2.918 0.003528 **
## TreatmentZooplanktonW2 0.023646 0.014799 1.598 0.110076
## TreatmentZooplanktonW3 -0.050036 0.015047 -3.325 0.000883 ***
## TreatmentZooplanktonW4 0.003482 0.017624 0.198 0.843383
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 37902 5529 6.855 7.14e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 554.5 on 10 Df
## Pseudo R-squared: 0.4126
## Number of iterations: 138 (BFGS) + 6 (Fisher scoring)
Anova(CH_2_Metabolic_beta_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing$Metabolic
## Df Chisq Pr(>Chisq)
## (Intercept) 1 137188.17 < 2.2e-16 ***
## Treatment 8 65.29 4.23e-11 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Meta_marginal<-emmeans(CH_2_Metabolic_beta_dist, ~ Treatment)
pairs(Meta_marginal, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 0.0011426396 0.0002772512 Inf 4.121
## ArtemiaW1 - ArtemiaW3 0.0008127836 0.0002481463 Inf 3.275
## ArtemiaW1 - ArtemiaW4 0.0005206074 0.0006872858 Inf 0.757
## ArtemiaW1 - No Food -0.0004963185 0.0004349844 Inf -1.141
## ArtemiaW1 - ZooplanktonW1 0.0007602277 0.0002605472 Inf 2.918
## ArtemiaW1 - ZooplanktonW2 -0.0004091069 0.0002558211 Inf -1.599
## ArtemiaW1 - ZooplanktonW3 0.0008354842 0.0002516556 Inf 3.320
## ArtemiaW1 - ZooplanktonW4 -0.0000596550 0.0003020676 Inf -0.197
## ArtemiaW2 - ArtemiaW3 -0.0003298561 0.0002628109 Inf -1.255
## ArtemiaW2 - ArtemiaW4 -0.0006220322 0.0006927155 Inf -0.898
## ArtemiaW2 - No Food -0.0016389581 0.0004435138 Inf -3.695
## ArtemiaW2 - ZooplanktonW1 -0.0003824120 0.0002745503 Inf -1.393
## ArtemiaW2 - ZooplanktonW2 -0.0015517465 0.0002700694 Inf -5.746
## ArtemiaW2 - ZooplanktonW3 -0.0003071555 0.0002661270 Inf -1.154
## ArtemiaW2 - ZooplanktonW4 -0.0012022946 0.0003142258 Inf -3.826
## ArtemiaW3 - ArtemiaW4 -0.0002921762 0.0006815886 Inf -0.429
## ArtemiaW3 - No Food -0.0013091021 0.0004259258 Inf -3.074
## ArtemiaW3 - ZooplanktonW1 -0.0000525559 0.0002451248 Inf -0.214
## ArtemiaW3 - ZooplanktonW2 -0.0012218905 0.0002400954 Inf -5.089
## ArtemiaW3 - ZooplanktonW3 0.0000227006 0.0002356521 Inf 0.096
## ArtemiaW3 - ZooplanktonW4 -0.0008724386 0.0002888706 Inf -3.020
## ArtemiaW4 - No Food -0.0010169259 0.0007695440 Inf -1.321
## ArtemiaW4 - ZooplanktonW1 0.0002396203 0.0006862006 Inf 0.349
## ArtemiaW4 - ZooplanktonW2 -0.0009297143 0.0006844202 Inf -1.358
## ArtemiaW4 - ZooplanktonW3 0.0003148768 0.0006828741 Inf 0.461
## ArtemiaW4 - ZooplanktonW4 -0.0005802624 0.0007030159 Inf -0.825
## No Food - ZooplanktonW1 0.0012565462 0.0004332679 Inf 2.900
## No Food - ZooplanktonW2 0.0000872116 0.0004304424 Inf 0.203
## No Food - ZooplanktonW3 0.0013318027 0.0004279799 Inf 3.112
## No Food - ZooplanktonW4 0.0004366635 0.0004594356 Inf 0.950
## ZooplanktonW1 - ZooplanktonW2 -0.0011693346 0.0002528914 Inf -4.624
## ZooplanktonW1 - ZooplanktonW3 0.0000752565 0.0002486768 Inf 0.303
## ZooplanktonW1 - ZooplanktonW4 -0.0008198827 0.0002995905 Inf -2.737
## ZooplanktonW2 - ZooplanktonW3 0.0012445911 0.0002437207 Inf 5.107
## ZooplanktonW2 - ZooplanktonW4 0.0003494519 0.0002954896 Inf 1.183
## ZooplanktonW3 - ZooplanktonW4 -0.0008951392 0.0002918907 Inf -3.067
## p.value
## 0.0013
## 0.0292
## 0.9979
## 0.9680
## 0.0844
## 0.8057
## 0.0253
## 1.0000
## 0.9439
## 0.9931
## 0.0068
## 0.9009
## <.0001
## 0.9657
## 0.0041
## 1.0000
## 0.0543
## 1.0000
## <.0001
## 1.0000
## 0.0634
## 0.9252
## 1.0000
## 0.9132
## 0.9999
## 0.9961
## 0.0886
## 1.0000
## 0.0485
## 0.9900
## 0.0001
## 1.0000
## 0.1350
## <.0001
## 0.9603
## 0.0554
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Meta_marginal, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ArtemiaW2 0.01626472 0.0002053877 Inf 0.01569671 0.01683272 a
## ZooplanktonW3 0.01657187 0.0001692525 Inf 0.01610380 0.01703995 ab
## ArtemiaW3 0.01659458 0.0001639891 Inf 0.01614106 0.01704809 abc
## ZooplanktonW1 0.01664713 0.0001822105 Inf 0.01614322 0.01715104 abcd
## ArtemiaW4 0.01688675 0.0006615720 Inf 0.01505715 0.01871635 abcde
## ArtemiaW1 0.01740736 0.0001862554 Inf 0.01689227 0.01792245 de
## ZooplanktonW4 0.01746701 0.0002378249 Inf 0.01680930 0.01812473 bcde
## ZooplanktonW2 0.01781647 0.0001753861 Inf 0.01733143 0.01830150 e
## No Food 0.01790368 0.0003930996 Inf 0.01681655 0.01899081 cde
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Genetic Information
CH_2_Gen_beta<-fitdist(CH_2_KO_Env_Processing$Genetic_Info, "beta")
cdfcomp(CH_2_Gen_beta, legendtext = "beta")
CH_2_Gen_beta_dist<-betareg(CH_2_KO_Env_Processing$Genetic_Info ~ Treatment, data=CH_2_KO_Env_Processing)
Anova(CH_2_Gen_beta_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing$Genetic_Info
## Df Chisq Pr(>Chisq)
## (Intercept) 1 46276.51 < 2.2e-16 ***
## Treatment 8 108.81 < 2.2e-16 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Gen_marginal<-emmeans(CH_2_Gen_beta_dist, ~ Treatment)
pairs(Gen_marginal, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 0.0006415171 0.0001846583 Inf 3.474
## ArtemiaW1 - ArtemiaW3 0.0005055075 0.0001662131 Inf 3.041
## ArtemiaW1 - ArtemiaW4 0.0000872194 0.0004686591 Inf 0.186
## ArtemiaW1 - No Food -0.0007115547 0.0003072984 Inf -2.316
## ArtemiaW1 - ZooplanktonW1 0.0002882084 0.0001760413 Inf 1.637
## ArtemiaW1 - ZooplanktonW2 -0.0007151541 0.0001778915 Inf -4.020
## ArtemiaW1 - ZooplanktonW3 0.0006328173 0.0001675346 Inf 3.777
## ArtemiaW1 - ZooplanktonW4 0.0001545979 0.0002026435 Inf 0.763
## ArtemiaW2 - ArtemiaW3 -0.0001360096 0.0001727774 Inf -0.787
## ArtemiaW2 - ArtemiaW4 -0.0005542978 0.0004710272 Inf -1.177
## ArtemiaW2 - No Food -0.0013530718 0.0003108980 Inf -4.352
## ArtemiaW2 - ZooplanktonW1 -0.0003533088 0.0001822519 Inf -1.939
## ArtemiaW2 - ZooplanktonW2 -0.0013566712 0.0001840397 Inf -7.372
## ArtemiaW2 - ZooplanktonW3 -0.0000086998 0.0001740490 Inf -0.050
## ArtemiaW2 - ZooplanktonW4 -0.0004869192 0.0002080616 Inf -2.340
## ArtemiaW3 - ArtemiaW4 -0.0004182881 0.0004641063 Inf -0.901
## ArtemiaW3 - No Food -0.0012170622 0.0003003093 Inf -4.053
## ArtemiaW3 - ZooplanktonW1 -0.0002172991 0.0001635355 Inf -1.329
## ArtemiaW3 - ZooplanktonW2 -0.0012206616 0.0001655256 Inf -7.374
## ArtemiaW3 - ZooplanktonW3 0.0001273098 0.0001543411 Inf 0.825
## ArtemiaW3 - ZooplanktonW4 -0.0003509096 0.0001918795 Inf -1.829
## ArtemiaW4 - No Food -0.0007987741 0.0005312252 Inf -1.504
## ArtemiaW4 - ZooplanktonW1 0.0002009890 0.0004677162 Inf 0.430
## ArtemiaW4 - ZooplanktonW2 -0.0008023735 0.0004684157 Inf -1.713
## ArtemiaW4 - ZooplanktonW3 0.0005455980 0.0004645812 Inf 1.174
## ArtemiaW4 - ZooplanktonW4 0.0000673785 0.0004783642 Inf 0.141
## No Food - ZooplanktonW1 0.0009997631 0.0003058584 Inf 3.269
## No Food - ZooplanktonW2 -0.0000035994 0.0003069271 Inf -0.012
## No Food - ZooplanktonW3 0.0013443720 0.0003010427 Inf 4.466
## No Food - ZooplanktonW4 0.0008661526 0.0003219057 Inf 2.691
## ZooplanktonW1 - ZooplanktonW2 -0.0010033625 0.0001753923 Inf -5.721
## ZooplanktonW1 - ZooplanktonW3 0.0003446090 0.0001648785 Inf 2.090
## ZooplanktonW1 - ZooplanktonW4 -0.0001336105 0.0002004532 Inf -0.667
## ZooplanktonW2 - ZooplanktonW3 0.0013479714 0.0001668525 Inf 8.079
## ZooplanktonW2 - ZooplanktonW4 0.0008697520 0.0002020800 Inf 4.304
## ZooplanktonW3 - ZooplanktonW4 -0.0004782194 0.0001930253 Inf -2.477
## p.value
## 0.0151
## 0.0597
## 1.0000
## 0.3325
## 0.7843
## 0.0019
## 0.0050
## 0.9978
## 0.9972
## 0.9615
## 0.0005
## 0.5867
## <.0001
## 1.0000
## 0.3178
## 0.9930
## 0.0017
## 0.9230
## <.0001
## 0.9962
## 0.6629
## 0.8543
## 1.0000
## 0.7388
## 0.9619
## 1.0000
## 0.0299
## 1.0000
## 0.0003
## 0.1509
## <.0001
## 0.4801
## 0.9992
## <.0001
## 0.0006
## 0.2429
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Gen_marginal, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ArtemiaW2 0.004555132 0.0001347977 Inf 0.004182345 0.004927918 a
## ZooplanktonW3 0.004563831 0.0001101796 Inf 0.004259126 0.004868536 a
## ArtemiaW3 0.004691141 0.0001081596 Inf 0.004392023 0.004990260 ab
## ZooplanktonW1 0.004908440 0.0001227283 Inf 0.004569032 0.005247849 ab
## ZooplanktonW4 0.005042051 0.0001585437 Inf 0.004603594 0.005480508 abc
## ArtemiaW4 0.005109429 0.0004513458 Inf 0.003861219 0.006357639 abcd
## ArtemiaW1 0.005196649 0.0001262741 Inf 0.004847434 0.005545863 bc
## No Food 0.005908203 0.0002801856 Inf 0.005133342 0.006683065 cd
## ZooplanktonW2 0.005911803 0.0001253677 Inf 0.005565095 0.006258511 d
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Load All Fish Community Data
CH_2_Tax4Fun_ASVs_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/ASV_COMBINED_CH_2_NORMAL_C.csv", header=TRUE, check.names=FALSE, row.names=1)
CH_2_Tax4Fun_ASVs_t_C<-as.data.frame(t(CH_2_Tax4Fun_ASVs_C))
BEN_C<-list(CH_2_Tax4Fun_ASVs_t_C, CH_2_taxa)
###Note CH_2_taxa is same file from CH_2_Alpha_Diversity.Rmd (e.g. full taxonomy)
names(BEN_C)<-paste("name", 1:2, sep = "")
tmp_C <- tempdir()
download_ref(tmp,reference='silva_ko',overwrite=FALSE)
FUNCTIONS_C <- t4f(BEN_C$name1, rows_are_taxa=FALSE, tax_table = BEN_C$name2, reference_path = tmp, type = 'uproc', short=TRUE, cn_normalize = TRUE, sample_normalize =TRUE, drop=TRUE)
write.csv(FUNCTIONS_C$fxn_table, "FUNCTIONS_FXN_TABLE_C.csv")
write.csv(FUNCTIONS_C$method_meta, "FUNCTIONS_METHOD_META_C.csv")
write.csv(FUNCTIONS_C$fxn_meta$KEGG_Description, "FUNCTIONS_FXN_META_KEGG_DESCRIPTION_C.csv")
write.csv(FUNCTIONS_C$fxn_meta$KEGG_Pathways, "FUNCTIONS_FXN_META_KEGG_PATHWAYS_C.csv")
Function NMDS (All Groups):
Tax4Fun_NMDS_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/FUNCTIONS_FXN_TABLE_C.csv", row.names = 1, check.names = FALSE, header = TRUE)
Tax4Fun_NMDS_dist_C<-as.matrix(vegdist(Tax4Fun_NMDS_C, "bray"))
Tax4Fun_NMDS_dist_NMDS_C<-metaMDS(Tax4Fun_NMDS_dist_C)
## Run 0 stress 0.0504879
## Run 1 stress 0.05089879
## ... Procrustes: rmse 0.01560836 max resid 0.1409
## Run 2 stress 0.05090028
## ... Procrustes: rmse 0.01556321 max resid 0.1406229
## Run 3 stress 0.06402583
## Run 4 stress 0.07290829
## Run 5 stress 0.05089754
## ... Procrustes: rmse 0.01542601 max resid 0.1386237
## Run 6 stress 0.05777442
## Run 7 stress 0.05089849
## ... Procrustes: rmse 0.01565049 max resid 0.1411443
## Run 8 stress 0.05089767
## ... Procrustes: rmse 0.0155678 max resid 0.1403714
## Run 9 stress 0.06587817
## Run 10 stress 0.05057988
## ... Procrustes: rmse 0.003599429 max resid 0.02132028
## Run 11 stress 0.05156933
## Run 12 stress 0.05090074
## ... Procrustes: rmse 0.01560028 max resid 0.140981
## Run 13 stress 0.05075738
## ... Procrustes: rmse 0.01495148 max resid 0.1418828
## Run 14 stress 0.05174736
## Run 15 stress 0.05171898
## Run 16 stress 0.05075518
## ... Procrustes: rmse 0.01496173 max resid 0.1416626
## Run 17 stress 0.05156784
## Run 18 stress 0.0508982
## ... Procrustes: rmse 0.01563185 max resid 0.1409636
## Run 19 stress 0.07059607
## Run 20 stress 0.05196696
## *** No convergence -- monoMDS stopping criteria:
## 3: no. of iterations >= maxit
## 17: stress ratio > sratmax
Tax4Fun_NMDS_dist_NMDS_MDS1_C <-Tax4Fun_NMDS_dist_NMDS_C$points[,1]
Tax4Fun_NMDS_dist_NMDS_MDS2_C<-Tax4Fun_NMDS_dist_NMDS_C$points[,2]
Tax4Fun_NMDS_dist_NMDS_C$stress
## [1] 0.0504879
CH_2_Tax4Fun_metadata_C<-read.csv("~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Metadata_C.csv", header=TRUE, check.names = FALSE)
CH_2_Tax4Fun_df_C<-data.frame(MDS1 = Tax4Fun_NMDS_dist_NMDS_MDS1_C, MDS2 =Tax4Fun_NMDS_dist_NMDS_MDS2_C, Treatment = CH_2_Tax4Fun_metadata_C$Treatment)
ggplot(CH_2_Tax4Fun_df_C, aes(x = MDS1, y = MDS2, col = Treatment)) + geom_point() + stat_ellipse() + theme_classic() + scale_colour_manual(values = c("red", "black", "blue", "green", "brown", "orange", "pink", "violet", "cyan"))
## Warning in MASS::cov.trob(data[, vars]): Probable convergence failure
## Too few points to calculate an ellipse
## Warning: Removed 1 rows containing missing values (geom_path).
pairwise.adonis(Tax4Fun_NMDS_dist_C, factors = CH_2_Tax4Fun_metadata_C$Treatment)
## pairs F.Model R2 p.value
## 1 No Food vs ArtemiaW1 8.5553113 0.37930362 0.002
## 2 No Food vs ZooplanktonW1 50.3490985 0.78243673 0.004
## 3 No Food vs ArtemiaW2 197.9496419 0.94735574 0.006
## 4 No Food vs ZooplanktonW2 48.3088577 0.75120068 0.002
## 5 No Food vs ZooplanktonW3 4.1286726 0.22774269 0.030
## 6 No Food vs ArtemiaW3 6.6880534 0.29478304 0.012
## 7 No Food vs ZooplanktonW4 0.8722606 0.08022808 0.394
## 8 No Food vs ArtemiaW4 13.4834858 0.55071757 0.002
## 9 ArtemiaW1 vs ZooplanktonW1 3.4935739 0.12706874 0.051
## 10 ArtemiaW1 vs ArtemiaW2 5.7558915 0.21512613 0.017
## 11 ArtemiaW1 vs ZooplanktonW2 4.0493465 0.13475656 0.043
## 12 ArtemiaW1 vs ZooplanktonW3 2.9515549 0.10951334 0.056
## 13 ArtemiaW1 vs ArtemiaW3 1.0451220 0.03864364 0.289
## 14 ArtemiaW1 vs ZooplanktonW4 8.3044397 0.29339707 0.004
## 15 ArtemiaW1 vs ArtemiaW4 1.8069336 0.07922738 0.190
## 16 ZooplanktonW1 vs ArtemiaW2 2.1952326 0.09464154 0.129
## 17 ZooplanktonW1 vs ZooplanktonW2 21.1355475 0.44839932 0.001
## 18 ZooplanktonW1 vs ZooplanktonW3 8.7689553 0.26759948 0.001
## 19 ZooplanktonW1 vs ArtemiaW3 3.0561283 0.10518016 0.078
## 20 ZooplanktonW1 vs ZooplanktonW4 17.9555686 0.47306810 0.001
## 21 ZooplanktonW1 vs ArtemiaW4 5.4052959 0.20470499 0.013
## 22 ArtemiaW2 vs ZooplanktonW2 38.7992178 0.62782700 0.001
## 23 ArtemiaW2 vs ZooplanktonW3 8.7137688 0.29325694 0.001
## 24 ArtemiaW2 vs ArtemiaW3 3.5309920 0.13308933 0.053
## 25 ArtemiaW2 vs ZooplanktonW4 16.8108466 0.49720277 0.001
## 26 ArtemiaW2 vs ArtemiaW4 6.4572608 0.26402224 0.007
## 27 ZooplanktonW2 vs ZooplanktonW3 5.5593357 0.17615503 0.001
## 28 ZooplanktonW2 vs ArtemiaW3 5.7639489 0.17071312 0.006
## 29 ZooplanktonW2 vs ZooplanktonW4 15.5817988 0.41461024 0.001
## 30 ZooplanktonW2 vs ArtemiaW4 5.7746667 0.20068579 0.009
## 31 ZooplanktonW3 vs ArtemiaW3 1.7764509 0.06395529 0.141
## 32 ZooplanktonW3 vs ZooplanktonW4 3.3724983 0.14429344 0.071
## 33 ZooplanktonW3 vs ArtemiaW4 1.3650914 0.06103670 0.220
## 34 ArtemiaW3 vs ZooplanktonW4 7.0666375 0.24311851 0.004
## 35 ArtemiaW3 vs ArtemiaW4 0.5171649 0.02199095 0.609
## 36 ZooplanktonW4 vs ArtemiaW4 7.3291398 0.30124944 0.008
## p.adjusted sig
## 1 0.072
## 2 0.144
## 3 0.216
## 4 0.072
## 5 1.000
## 6 0.432
## 7 1.000
## 8 0.072
## 9 1.000
## 10 0.612
## 11 1.000
## 12 1.000
## 13 1.000
## 14 0.144
## 15 1.000
## 16 1.000
## 17 0.036 .
## 18 0.036 .
## 19 1.000
## 20 0.036 .
## 21 0.468
## 22 0.036 .
## 23 0.036 .
## 24 1.000
## 25 0.036 .
## 26 0.252
## 27 0.036 .
## 28 0.216
## 29 0.036 .
## 30 0.324
## 31 1.000
## 32 1.000
## 33 1.000
## 34 0.144
## 35 1.000
## 36 0.288
Function Bar Graph (Top 10 KO’s):
head(sort(colSums(FUNCTIONS_C$fxn_table), decreasing = TRUE), n = 20)
## K03406 K07347 K02035 K02015 K00123 K15125 K03046
## 0.6641966 0.3191259 0.2275348 0.2195786 0.2075259 0.2003209 0.1849037
## K01652 K03043 K00265 K00656 K00059 K08300 K00615
## 0.1802397 0.1772745 0.1771494 0.1676493 0.1666067 0.1654843 0.1636627
## K02337 K01952 K00525 K01955 K02016 K03723
## 0.1585262 0.1535794 0.1528872 0.1487206 0.1420178 0.1365532
###Determine's Top 10 KO Hits - Fill out CH_2_Tax4Fun_Analysis_ForR.csv with average ASV Relative abundance values (+/- SE), function category (Unknown w/ enzyme function if no function found), and Treatment (All Fish treatments)###
#ENV Information Processing ONLY
CH_2_Tax4Fun_function_ENV_SIG_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_ENV_SIGNAL_C.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_ENV_SIG_C$Treatment<-factor(CH_2_Tax4Fun_function_ENV_SIG_C$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_ENV_SIG_C<-ggplot(data = CH_2_Tax4Fun_function_ENV_SIG_C, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions (+Contamination)", subtitle = "Environmental Information Processing (Signal Transduction)", y = "Relative Gene Abundance") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("BC","BC", "C", "AB", "A", "C", "C", "AB", "AB"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4")) + theme(plot.subtitle = element_text(size=8))
#Cellular Processes ONLY
CH_2_Tax4Fun_function_Cell_Proc_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_Cell_Proc_C.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_Cell_Proc_C$Treatment<-factor(CH_2_Tax4Fun_function_Cell_Proc_C$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_Cell_Proc_C<-ggplot(data = CH_2_Tax4Fun_function_Cell_Proc_C, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions (+Contamination)", subtitle = "Cellular Processes (Motility)", y = "") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("BC","BC", "C", "AB", "A", "C", "C", "A", "A"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4"))
#Metabolic Pathways ONLY
CH_2_Tax4Fun_function_Metab_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_Metab_C.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_Metab_C$Treatment<-factor(CH_2_Tax4Fun_function_Metab_C$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_Metab_C<-ggplot(data = CH_2_Tax4Fun_function_Metab_C, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions (+Contamination)", subtitle = "Metabolic Pathways", y = "Relative Gene Abundance") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("C","BC", "A", "AB", "ABC", "AB", "A", "A", "A"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005, -0.0005), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4"))
#Genetic Information ONLY
CH_2_Tax4Fun_function_Gen_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_Tax4Fun_Analysis_ForR_Gen.csv", header = TRUE, check.names = FALSE)
CH_2_Tax4Fun_function_Gen_C$Treatment<-factor(CH_2_Tax4Fun_function_Gen_C$Treatment, levels = c("No Food", "ArtemiaW1", "ArtemiaW2", "ArtemiaW3", "ArtemiaW4", "ZooplanktonW1", "ZooplanktonW2", "ZooplanktonW3", "ZooplanktonW4"))
CH_2_Tax4Fun_function_Graph_Gen_C<-ggplot(data = CH_2_Tax4Fun_function_Gen_C, aes(x = Pathway, y =ASV_Relative_Abundance, fill = Treatment)) + geom_bar(stat="identity", color = "black", position = position_dodge()) + labs (title = "Tax4Fun Microbial Function Predictions (+Contamination)", subtitle = "Genetic Information Processing (Replication + Repair or Transcription", y = "") + theme(axis.text.y = element_text(size =7)) + geom_errorbar(aes(ymin=ASV_Relative_Abundance-SE, ymax=ASV_Relative_Abundance+SE), width=.2, position=position_dodge(0.9)) + theme_classic() + annotate("text", label = c("BC","AB", "AB", "AB", "ABC", "BC", "C", "A", "A"), x = c(.6, .7, .8, .9, 1, 1.1, 1.2, 1.3, 1.4), y = c(-0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004, -0.0004), size=4, fontface = 2) + xlab("") + theme(axis.text.x = element_blank())+ scale_fill_manual(values = c("gray65", "darkslategray2", "darkslategray3", "darkslategray4", "darkslategray", "darkgoldenrod1","darkgoldenrod2", "darkgoldenrod3", "darkgoldenrod4"))
#ALL
ggarrange(CH_2_Tax4Fun_function_Graph_ENV_SIG_C, CH_2_Tax4Fun_function_Graph_Cell_Proc_C, CH_2_Tax4Fun_function_Graph_Metab_C, CH_2_Tax4Fun_function_Graph_Gen_C, ncol=2, nrow=2, common.legend = TRUE, legend = c("right"))
## Warning: Removed 1 rows containing missing values (geom_errorbar).
Significance per KO between Treatments
#Export Data for 1st KO (Environmental Information Processing)
#File name = CH_2_KO_Env_Processing.csv
#Environmental Information Processing (Signal Transduction or Membrane Transport or Prokaryote Community Processes
CH_2_KO_Env_Processing_C<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CH_2_KO_Env_Processing_C.csv", header = TRUE, check.names = FALSE)
CH_2_KO_Env_Processing_beta_C<-fitdist(CH_2_KO_Env_Processing_C$Environmental_Info, "beta")
cdfcomp(CH_2_KO_Env_Processing_beta_C, legendtext = "beta")
CH_2_KO_Env_Processing_beta_dist_C<-betareg(CH_2_KO_Env_Processing_C$Environmental_Info ~ Treatment, data=CH_2_KO_Env_Processing_C)
summary(CH_2_KO_Env_Processing_beta_dist_C)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing_C$Environmental_Info ~
## Treatment, data = CH_2_KO_Env_Processing_C)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -9.1703 -0.0354 0.1186 0.5928 1.6947
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -4.93707 0.08416 -58.663 < 2e-16 ***
## TreatmentArtemiaW2 0.04177 0.12585 0.332 0.739958
## TreatmentArtemiaW3 -0.12155 0.11779 -1.032 0.302139
## TreatmentArtemiaW4 -0.10023 0.13073 -0.767 0.443275
## TreatmentNo Food -0.02685 0.19575 -0.137 0.890887
## TreatmentZooplanktonW1 0.08950 0.11624 0.770 0.441298
## TreatmentZooplanktonW2 0.00710 0.11445 0.062 0.950536
## TreatmentZooplanktonW3 -0.24641 0.12610 -1.954 0.050687 .
## TreatmentZooplanktonW4 -0.58639 0.15666 -3.743 0.000182 ***
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 1473.0 209.1 7.043 1.88e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 483.6 on 10 Df
## Pseudo R-squared: 0.1491
## Number of iterations: 138 (BFGS) + 3 (Fisher scoring)
Anova(CH_2_KO_Env_Processing_beta_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing_C$Environmental_Info
## Df Chisq Pr(>Chisq)
## (Intercept) 1 3441.382 < 2.2e-16 ***
## Treatment 8 26.291 0.0009365 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Env_Proc_marginal_C<-emmeans(CH_2_KO_Env_Processing_beta_dist_C, ~ Treatment)
pairs(Env_Proc_marginal_C, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 -0.000301641 0.0009111994 Inf -0.331
## ArtemiaW1 - ArtemiaW3 0.000810240 0.0007882314 Inf 1.028
## ArtemiaW1 - ArtemiaW4 0.000675070 0.0008745909 Inf 0.772
## ArtemiaW1 - No Food 0.000187465 0.0013552448 Inf 0.138
## ArtemiaW1 - ZooplanktonW1 -0.000661874 0.0008593527 Inf -0.770
## ArtemiaW1 - ZooplanktonW2 -0.000050399 0.0008122350 Inf -0.062
## ArtemiaW1 - ZooplanktonW3 0.001547303 0.0007903758 Inf 1.958
## ArtemiaW1 - ZooplanktonW4 0.003148321 0.0007914129 Inf 3.978
## ArtemiaW2 - ArtemiaW3 0.001111881 0.0008643800 Inf 1.286
## ArtemiaW2 - ArtemiaW4 0.000976711 0.0009437973 Inf 1.035
## ArtemiaW2 - No Food 0.000489106 0.0014009041 Inf 0.349
## ArtemiaW2 - ZooplanktonW1 -0.000360233 0.0009296941 Inf -0.387
## ArtemiaW2 - ZooplanktonW2 0.000251242 0.0008863237 Inf 0.283
## ArtemiaW2 - ZooplanktonW3 0.001848944 0.0008663359 Inf 2.134
## ArtemiaW2 - ZooplanktonW4 0.003449962 0.0008672822 Inf 3.978
## ArtemiaW3 - ArtemiaW4 -0.000135170 0.0008256983 Inf -0.164
## ArtemiaW3 - No Food -0.000622775 0.0013242194 Inf -0.470
## ArtemiaW3 - ZooplanktonW1 -0.001472113 0.0008095404 Inf -1.818
## ArtemiaW3 - ZooplanktonW2 -0.000860639 0.0007593380 Inf -1.133
## ArtemiaW3 - ZooplanktonW3 0.000737063 0.0007359092 Inf 1.002
## ArtemiaW3 - ZooplanktonW4 0.002338081 0.0007370230 Inf 3.172
## ArtemiaW4 - No Food -0.000487605 0.0013773734 Inf -0.354
## ArtemiaW4 - ZooplanktonW1 -0.001336944 0.0008938434 Inf -1.496
## ArtemiaW4 - ZooplanktonW2 -0.000725469 0.0008486429 Inf -0.855
## ArtemiaW4 - ZooplanktonW3 0.000872233 0.0008277456 Inf 1.054
## ArtemiaW4 - ZooplanktonW4 0.002473251 0.0008287360 Inf 2.984
## No Food - ZooplanktonW1 -0.000849338 0.0013677482 Inf -0.621
## No Food - ZooplanktonW2 -0.000237864 0.0013386463 Inf -0.178
## No Food - ZooplanktonW3 0.001359838 0.0013254969 Inf 1.026
## No Food - ZooplanktonW4 0.002960856 0.0013261156 Inf 2.233
## ZooplanktonW1 - ZooplanktonW2 0.000611475 0.0008329301 Inf 0.734
## ZooplanktonW1 - ZooplanktonW3 0.002209177 0.0008116284 Inf 2.722
## ZooplanktonW1 - ZooplanktonW4 0.003810195 0.0008126384 Inf 4.689
## ZooplanktonW2 - ZooplanktonW3 0.001597702 0.0007615637 Inf 2.098
## ZooplanktonW2 - ZooplanktonW4 0.003198720 0.0007626400 Inf 4.194
## ZooplanktonW3 - ZooplanktonW4 0.001601018 0.0007393158 Inf 2.166
## p.value
## 1.0000
## 0.9833
## 0.9976
## 1.0000
## 0.9976
## 1.0000
## 0.5732
## 0.0023
## 0.9356
## 0.9826
## 1.0000
## 1.0000
## 1.0000
## 0.4497
## 0.0023
## 1.0000
## 0.9999
## 0.6699
## 0.9693
## 0.9859
## 0.0404
## 1.0000
## 0.8580
## 0.9951
## 0.9804
## 0.0702
## 0.9995
## 1.0000
## 0.9835
## 0.3842
## 0.9983
## 0.1400
## 0.0001
## 0.4746
## 0.0009
## 0.4285
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Env_Proc_marginal_C, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ZooplanktonW4 0.003976148 0.0005256081 Inf 0.002522563 0.005429733 a
## ZooplanktonW3 0.005577166 0.0005240715 Inf 0.004127831 0.007026501 ab
## ArtemiaW3 0.006314229 0.0005208369 Inf 0.004873839 0.007754619 b
## ArtemiaW4 0.006449399 0.0006441057 Inf 0.004668105 0.008230692 ab
## No Food 0.006937004 0.0012192838 Inf 0.003565039 0.010308970 ab
## ArtemiaW1 0.007124469 0.0005953196 Inf 0.005478095 0.008770843 b
## ZooplanktonW2 0.007174868 0.0005564988 Inf 0.005635854 0.008713882 b
## ArtemiaW2 0.007426110 0.0006930006 Inf 0.005509596 0.009342624 b
## ZooplanktonW1 0.007786343 0.0006232599 Inf 0.006062699 0.009509986 b
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Cellular Processes (Motility)
CH_2_KO_Cell_Proc_beta_C<-fitdist(CH_2_KO_Env_Processing_C$Cellular_Proc, "beta")
cdfcomp(CH_2_KO_Cell_Proc_beta_C, legendtext = "beta")
CH_2_KO_Cell_Proc_beta_dist_C<-betareg(CH_2_KO_Env_Processing_C$Cellular_Proc ~ Treatment, data=CH_2_KO_Env_Processing_C)
summary(CH_2_KO_Cell_Proc_beta_dist_C)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing_C$Cellular_Proc ~ Treatment,
## data = CH_2_KO_Env_Processing_C)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -9.1703 -0.0354 0.1186 0.5928 1.6947
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -4.93707 0.08416 -58.663 < 2e-16 ***
## TreatmentArtemiaW2 0.04177 0.12585 0.332 0.739958
## TreatmentArtemiaW3 -0.12155 0.11779 -1.032 0.302139
## TreatmentArtemiaW4 -0.10023 0.13073 -0.767 0.443275
## TreatmentNo Food -0.02685 0.19575 -0.137 0.890887
## TreatmentZooplanktonW1 0.08950 0.11624 0.770 0.441298
## TreatmentZooplanktonW2 0.00710 0.11445 0.062 0.950536
## TreatmentZooplanktonW3 -0.24641 0.12610 -1.954 0.050687 .
## TreatmentZooplanktonW4 -0.58639 0.15666 -3.743 0.000182 ***
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 1473.0 209.1 7.043 1.88e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 483.6 on 10 Df
## Pseudo R-squared: 0.1491
## Number of iterations: 138 (BFGS) + 3 (Fisher scoring)
Anova(CH_2_KO_Cell_Proc_beta_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing_C$Cellular_Proc
## Df Chisq Pr(>Chisq)
## (Intercept) 1 3441.382 < 2.2e-16 ***
## Treatment 8 26.291 0.0009365 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Cell_Proc_marginal_C<-emmeans(CH_2_KO_Cell_Proc_beta_dist_C, ~ Treatment)
pairs(Cell_Proc_marginal_C, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 -0.000301641 0.0009111994 Inf -0.331
## ArtemiaW1 - ArtemiaW3 0.000810240 0.0007882314 Inf 1.028
## ArtemiaW1 - ArtemiaW4 0.000675070 0.0008745909 Inf 0.772
## ArtemiaW1 - No Food 0.000187465 0.0013552448 Inf 0.138
## ArtemiaW1 - ZooplanktonW1 -0.000661874 0.0008593527 Inf -0.770
## ArtemiaW1 - ZooplanktonW2 -0.000050399 0.0008122350 Inf -0.062
## ArtemiaW1 - ZooplanktonW3 0.001547303 0.0007903758 Inf 1.958
## ArtemiaW1 - ZooplanktonW4 0.003148321 0.0007914129 Inf 3.978
## ArtemiaW2 - ArtemiaW3 0.001111881 0.0008643800 Inf 1.286
## ArtemiaW2 - ArtemiaW4 0.000976711 0.0009437973 Inf 1.035
## ArtemiaW2 - No Food 0.000489106 0.0014009041 Inf 0.349
## ArtemiaW2 - ZooplanktonW1 -0.000360233 0.0009296941 Inf -0.387
## ArtemiaW2 - ZooplanktonW2 0.000251242 0.0008863237 Inf 0.283
## ArtemiaW2 - ZooplanktonW3 0.001848944 0.0008663359 Inf 2.134
## ArtemiaW2 - ZooplanktonW4 0.003449962 0.0008672822 Inf 3.978
## ArtemiaW3 - ArtemiaW4 -0.000135170 0.0008256983 Inf -0.164
## ArtemiaW3 - No Food -0.000622775 0.0013242194 Inf -0.470
## ArtemiaW3 - ZooplanktonW1 -0.001472113 0.0008095404 Inf -1.818
## ArtemiaW3 - ZooplanktonW2 -0.000860639 0.0007593380 Inf -1.133
## ArtemiaW3 - ZooplanktonW3 0.000737063 0.0007359092 Inf 1.002
## ArtemiaW3 - ZooplanktonW4 0.002338081 0.0007370230 Inf 3.172
## ArtemiaW4 - No Food -0.000487605 0.0013773734 Inf -0.354
## ArtemiaW4 - ZooplanktonW1 -0.001336944 0.0008938434 Inf -1.496
## ArtemiaW4 - ZooplanktonW2 -0.000725469 0.0008486429 Inf -0.855
## ArtemiaW4 - ZooplanktonW3 0.000872233 0.0008277456 Inf 1.054
## ArtemiaW4 - ZooplanktonW4 0.002473251 0.0008287360 Inf 2.984
## No Food - ZooplanktonW1 -0.000849338 0.0013677482 Inf -0.621
## No Food - ZooplanktonW2 -0.000237864 0.0013386463 Inf -0.178
## No Food - ZooplanktonW3 0.001359838 0.0013254969 Inf 1.026
## No Food - ZooplanktonW4 0.002960856 0.0013261156 Inf 2.233
## ZooplanktonW1 - ZooplanktonW2 0.000611475 0.0008329301 Inf 0.734
## ZooplanktonW1 - ZooplanktonW3 0.002209177 0.0008116284 Inf 2.722
## ZooplanktonW1 - ZooplanktonW4 0.003810195 0.0008126384 Inf 4.689
## ZooplanktonW2 - ZooplanktonW3 0.001597702 0.0007615637 Inf 2.098
## ZooplanktonW2 - ZooplanktonW4 0.003198720 0.0007626400 Inf 4.194
## ZooplanktonW3 - ZooplanktonW4 0.001601018 0.0007393158 Inf 2.166
## p.value
## 1.0000
## 0.9833
## 0.9976
## 1.0000
## 0.9976
## 1.0000
## 0.5732
## 0.0023
## 0.9356
## 0.9826
## 1.0000
## 1.0000
## 1.0000
## 0.4497
## 0.0023
## 1.0000
## 0.9999
## 0.6699
## 0.9693
## 0.9859
## 0.0404
## 1.0000
## 0.8580
## 0.9951
## 0.9804
## 0.0702
## 0.9995
## 1.0000
## 0.9835
## 0.3842
## 0.9983
## 0.1400
## 0.0001
## 0.4746
## 0.0009
## 0.4285
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Cell_Proc_marginal_C, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ZooplanktonW4 0.003976148 0.0005256081 Inf 0.002522563 0.005429733 a
## ZooplanktonW3 0.005577166 0.0005240715 Inf 0.004127831 0.007026501 ab
## ArtemiaW3 0.006314229 0.0005208369 Inf 0.004873839 0.007754619 b
## ArtemiaW4 0.006449399 0.0006441057 Inf 0.004668105 0.008230692 ab
## No Food 0.006937004 0.0012192838 Inf 0.003565039 0.010308970 ab
## ArtemiaW1 0.007124469 0.0005953196 Inf 0.005478095 0.008770843 b
## ZooplanktonW2 0.007174868 0.0005564988 Inf 0.005635854 0.008713882 b
## ArtemiaW2 0.007426110 0.0006930006 Inf 0.005509596 0.009342624 b
## ZooplanktonW1 0.007786343 0.0006232599 Inf 0.006062699 0.009509986 b
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Metabolic
CH_2_Metabolic_beta_C<-fitdist(CH_2_KO_Env_Processing_C$Metabolic, "beta")
cdfcomp(CH_2_Metabolic_beta_C, legendtext = "beta")
CH_2_Metabolic_beta_dist_C<-betareg(CH_2_KO_Env_Processing_C$Metabolic ~ Treatment, data=CH_2_KO_Env_Processing_C)
summary(CH_2_Metabolic_beta_dist_C)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing_C$Metabolic ~ Treatment,
## data = CH_2_KO_Env_Processing_C)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -2.0489 -0.4884 -0.1612 0.1764 6.3180
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -4.14535 0.01722 -240.718 < 2e-16 ***
## TreatmentArtemiaW2 -0.07247 0.02664 -2.720 0.00653 **
## TreatmentArtemiaW3 -0.04823 0.02378 -2.028 0.04259 *
## TreatmentArtemiaW4 -0.05890 0.02654 -2.219 0.02649 *
## TreatmentNo Food 0.02652 0.03935 0.674 0.50045
## TreatmentZooplanktonW1 -0.04576 0.02463 -1.858 0.06315 .
## TreatmentZooplanktonW2 0.02468 0.02340 1.055 0.29140
## TreatmentZooplanktonW3 -0.01514 0.02444 -0.620 0.53558
## TreatmentZooplanktonW4 0.04953 0.02655 1.866 0.06206 .
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 16873 2375 7.104 1.21e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 560.2 on 10 Df
## Pseudo R-squared: 0.2871
## Number of iterations: 320 (BFGS) + 9 (Fisher scoring)
Anova(CH_2_Metabolic_beta_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing_C$Metabolic
## Df Chisq Pr(>Chisq)
## (Intercept) 1 57945.226 < 2.2e-16 ***
## Treatment 8 38.289 6.657e-06 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Meta_marginal_C<-emmeans(CH_2_Metabolic_beta_dist_C, ~ Treatment)
pairs(Meta_marginal_C, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 0.0010741044 0.0003930104 Inf 2.733
## ArtemiaW1 - ArtemiaW3 0.0007231706 0.0003572076 Inf 2.025
## ArtemiaW1 - ArtemiaW4 0.0008786245 0.0003944387 Inf 2.228
## ArtemiaW1 - No Food -0.0004122394 0.0006167385 Inf -0.668
## ArtemiaW1 - ZooplanktonW1 0.0006869248 0.0003696531 Inf 1.858
## ArtemiaW1 - ZooplanktonW2 -0.0003834152 0.0003630908 Inf -1.056
## ArtemiaW1 - ZooplanktonW3 0.0002306922 0.0003723715 Inf 0.620
## ArtemiaW1 - ZooplanktonW4 -0.0007787571 0.0004191471 Inf -1.858
## ArtemiaW2 - ArtemiaW3 -0.0003509338 0.0003773258 Inf -0.930
## ArtemiaW2 - ArtemiaW4 -0.0001954799 0.0004127461 Inf -0.474
## ArtemiaW2 - No Food -0.0014863437 0.0006286047 Inf -2.365
## ArtemiaW2 - ZooplanktonW1 -0.0003871796 0.0003891283 Inf -0.995
## ArtemiaW2 - ZooplanktonW2 -0.0014575195 0.0003828999 Inf -3.807
## ArtemiaW2 - ZooplanktonW3 -0.0008434121 0.0003917115 Inf -2.153
## ArtemiaW2 - ZooplanktonW4 -0.0018528615 0.0004364192 Inf -4.246
## ArtemiaW3 - ArtemiaW4 0.0001554539 0.0003788132 Inf 0.410
## ArtemiaW3 - No Food -0.0011354099 0.0006068641 Inf -1.871
## ArtemiaW3 - ZooplanktonW1 -0.0000362458 0.0003529319 Inf -0.103
## ArtemiaW3 - ZooplanktonW2 -0.0011065857 0.0003460527 Inf -3.198
## ArtemiaW3 - ZooplanktonW3 -0.0004924783 0.0003557781 Inf -1.384
## ArtemiaW3 - ZooplanktonW4 -0.0015019277 0.0004044773 Inf -3.713
## ArtemiaW4 - No Food -0.0012908638 0.0006294987 Inf -2.051
## ArtemiaW4 - ZooplanktonW1 -0.0001916997 0.0003905708 Inf -0.491
## ArtemiaW4 - ZooplanktonW2 -0.0012620396 0.0003843658 Inf -3.283
## ArtemiaW4 - ZooplanktonW3 -0.0006479322 0.0003931446 Inf -1.648
## ArtemiaW4 - ZooplanktonW4 -0.0016573816 0.0004377059 Inf -3.787
## No Food - ZooplanktonW1 0.0010991642 0.0006142720 Inf 1.789
## No Food - ZooplanktonW2 0.0000288242 0.0006103455 Inf 0.047
## No Food - ZooplanktonW3 0.0006429316 0.0006159117 Inf 1.044
## No Food - ZooplanktonW4 -0.0003665178 0.0006452682 Inf -0.568
## ZooplanktonW1 - ZooplanktonW2 -0.0010703400 0.0003588852 Inf -2.982
## ZooplanktonW1 - ZooplanktonW3 -0.0004562326 0.0003682719 Inf -1.239
## ZooplanktonW1 - ZooplanktonW4 -0.0014656819 0.0004155093 Inf -3.527
## ZooplanktonW2 - ZooplanktonW3 0.0006141074 0.0003616845 Inf 1.698
## ZooplanktonW2 - ZooplanktonW4 -0.0003953420 0.0004096822 Inf -0.965
## ZooplanktonW3 - ZooplanktonW4 -0.0010094494 0.0004179295 Inf -2.415
## p.value
## 0.1362
## 0.5260
## 0.3875
## 0.9991
## 0.6427
## 0.9802
## 0.9995
## 0.6429
## 0.9913
## 0.9999
## 0.3037
## 0.9864
## 0.0045
## 0.4368
## 0.0007
## 1.0000
## 0.6340
## 1.0000
## 0.0373
## 0.9041
## 0.0064
## 0.5076
## 0.9999
## 0.0285
## 0.7780
## 0.0048
## 0.6894
## 1.0000
## 0.9816
## 0.9997
## 0.0706
## 0.9480
## 0.0125
## 0.7481
## 0.9889
## 0.2753
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Meta_marginal_C, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ArtemiaW2 0.01451693 0.0002909187 Inf 0.01371239 0.01532147 a
## ArtemiaW4 0.01471241 0.0002928454 Inf 0.01390254 0.01552228 a
## ArtemiaW3 0.01486786 0.0002403618 Inf 0.01420314 0.01553259 a
## ZooplanktonW1 0.01490411 0.0002584954 Inf 0.01418923 0.01561899 ab
## ZooplanktonW3 0.01536034 0.0002623680 Inf 0.01463476 0.01608593 abc
## ArtemiaW1 0.01559104 0.0002643032 Inf 0.01486010 0.01632197 abc
## ZooplanktonW2 0.01597445 0.0002490208 Inf 0.01528578 0.01666313 bc
## No Food 0.01600328 0.0005572637 Inf 0.01446215 0.01754440 abc
## ZooplanktonW4 0.01636979 0.0003253624 Inf 0.01546999 0.01726959 c
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
#Genetic Information
CH_2_Gen_beta_C<-fitdist(CH_2_KO_Env_Processing_C$Genetic_Info, "beta")
cdfcomp(CH_2_Gen_beta_C, legendtext = "beta")
CH_2_Gen_beta_dist_C<-betareg(CH_2_KO_Env_Processing_C$Genetic_Info ~ Treatment, data=CH_2_KO_Env_Processing_C)
summary(CH_2_Gen_beta_dist_C)
##
## Call:
## betareg(formula = CH_2_KO_Env_Processing_C$Genetic_Info ~ Treatment,
## data = CH_2_KO_Env_Processing_C)
##
## Standardized weighted residuals 2:
## Min 1Q Median 3Q Max
## -2.6206 -0.4682 -0.0775 0.1940 4.8119
##
## Coefficients (mean model with logit link):
## Estimate Std. Error z value Pr(>|z|)
## (Intercept) -5.24888 0.03881 -135.258 <2e-16 ***
## TreatmentArtemiaW2 -0.13135 0.06106 -2.151 0.0314 *
## TreatmentArtemiaW3 -0.09656 0.05419 -1.782 0.0748 .
## TreatmentArtemiaW4 -0.12743 0.06099 -2.089 0.0367 *
## TreatmentNo Food 0.12913 0.08513 1.517 0.1293
## TreatmentZooplanktonW1 -0.05596 0.05561 -1.006 0.3143
## TreatmentZooplanktonW2 0.13172 0.05148 2.559 0.0105 *
## TreatmentZooplanktonW3 -0.05643 0.05562 -1.015 0.3103
## TreatmentZooplanktonW4 0.13893 0.05831 2.383 0.0172 *
##
## Phi coefficients (precision model with identity link):
## Estimate Std. Error z value Pr(>|z|)
## (phi) 9742 1373 7.095 1.29e-12 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Type of estimator: ML (maximum likelihood)
## Log-likelihood: 587.7 on 10 Df
## Pseudo R-squared: 0.3574
## Number of iterations: 76 (BFGS) + 14 (Fisher scoring)
Anova(CH_2_Gen_beta_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: CH_2_KO_Env_Processing_C$Genetic_Info
## Df Chisq Pr(>Chisq)
## (Intercept) 1 18294.798 < 2.2e-16 ***
## Treatment 8 53.412 8.976e-09 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Gen_marginal_C<-emmeans(CH_2_Gen_beta_dist_C, ~ Treatment)
pairs(Gen_marginal_C, adjust = "tukey")
## contrast estimate SE df z.ratio
## ArtemiaW1 - ArtemiaW2 0.0006403243 0.0002949273 Inf 2.171
## ArtemiaW1 - ArtemiaW3 0.0004787297 0.0002695052 Inf 1.776
## ArtemiaW1 - ArtemiaW4 0.0006223757 0.0002952367 Inf 2.108
## ArtemiaW1 - No Food -0.0007160809 0.0004909373 Inf -1.459
## ArtemiaW1 - ZooplanktonW1 0.0002830182 0.0002812192 Inf 1.006
## ArtemiaW1 - ZooplanktonW2 -0.0007313687 0.0002842988 Inf -2.573
## ArtemiaW1 - ZooplanktonW3 0.0002853060 0.0002811874 Inf 1.015
## ArtemiaW1 - ZooplanktonW4 -0.0007742007 0.0003287759 Inf -2.355
## ArtemiaW2 - ArtemiaW3 -0.0001615946 0.0002798550 Inf -0.577
## ArtemiaW2 - ArtemiaW4 -0.0000179487 0.0003047138 Inf -0.059
## ArtemiaW2 - No Food -0.0013564052 0.0004966943 Inf -2.731
## ArtemiaW2 - ZooplanktonW1 -0.0003573061 0.0002911529 Inf -1.227
## ArtemiaW2 - ZooplanktonW2 -0.0013716930 0.0002941285 Inf -4.664
## ArtemiaW2 - ZooplanktonW3 -0.0003550183 0.0002911222 Inf -1.219
## ArtemiaW2 - ZooplanktonW4 -0.0014145250 0.0003373120 Inf -4.194
## ArtemiaW3 - ArtemiaW4 0.0001436459 0.0002801810 Inf 0.513
## ArtemiaW3 - No Food -0.0011948106 0.0004820334 Inf -2.479
## ArtemiaW3 - ZooplanktonW1 -0.0001957115 0.0002653694 Inf -0.738
## ArtemiaW3 - ZooplanktonW2 -0.0012100984 0.0002686308 Inf -4.505
## ArtemiaW3 - ZooplanktonW3 -0.0001934237 0.0002653357 Inf -0.729
## ArtemiaW3 - ZooplanktonW4 -0.0012529304 0.0003153257 Inf -3.973
## ArtemiaW4 - No Food -0.0013384566 0.0004968781 Inf -2.694
## ArtemiaW4 - ZooplanktonW1 -0.0003393574 0.0002914662 Inf -1.164
## ArtemiaW4 - ZooplanktonW2 -0.0013537444 0.0002944387 Inf -4.598
## ArtemiaW4 - ZooplanktonW3 -0.0003370696 0.0002914356 Inf -1.157
## ArtemiaW4 - ZooplanktonW4 -0.0013965763 0.0003375825 Inf -4.137
## No Food - ZooplanktonW1 0.0009990991 0.0004886792 Inf 2.044
## No Food - ZooplanktonW2 -0.0000152878 0.0004904579 Inf -0.031
## No Food - ZooplanktonW3 0.0010013869 0.0004886609 Inf 2.049
## No Food - ZooplanktonW4 -0.0000581198 0.0005175101 Inf -0.112
## ZooplanktonW1 - ZooplanktonW2 -0.0010143869 0.0002803813 Inf -3.618
## ZooplanktonW1 - ZooplanktonW3 0.0000022878 0.0002772259 Inf 0.008
## ZooplanktonW1 - ZooplanktonW4 -0.0010572189 0.0003253944 Inf -3.249
## ZooplanktonW2 - ZooplanktonW3 0.0010166747 0.0002803494 Inf 3.626
## ZooplanktonW2 - ZooplanktonW4 -0.0000428320 0.0003280595 Inf -0.131
## ZooplanktonW3 - ZooplanktonW4 -0.0010595067 0.0003253669 Inf -3.256
## p.value
## 0.4247
## 0.6980
## 0.4676
## 0.8746
## 0.9854
## 0.1982
## 0.9846
## 0.3093
## 0.9997
## 1.0000
## 0.1370
## 0.9507
## 0.0001
## 0.9525
## 0.0009
## 0.9999
## 0.2423
## 0.9983
## 0.0002
## 0.9984
## 0.0023
## 0.1499
## 0.9638
## 0.0001
## 0.9652
## 0.0012
## 0.5119
## 1.0000
## 0.5086
## 1.0000
## 0.0091
## 1.0000
## 0.0318
## 0.0088
## 1.0000
## 0.0311
##
## P value adjustment: tukey method for comparing a family of 9 estimates
cld(Gen_marginal_C, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ArtemiaW2 0.004585623 0.0002153717 Inf 0.003990006 0.005181240 a
## ArtemiaW4 0.004603571 0.0002157951 Inf 0.004006784 0.005200359 a
## ArtemiaW3 0.004747217 0.0001789856 Inf 0.004252227 0.005242207 a
## ZooplanktonW3 0.004940641 0.0001961355 Inf 0.004398223 0.005483059 a
## ZooplanktonW1 0.004942929 0.0001961811 Inf 0.004400384 0.005485473 a
## ArtemiaW1 0.005225947 0.0002017401 Inf 0.004668029 0.005783865 ab
## No Food 0.005942028 0.0004476853 Inf 0.004703941 0.007180115 ab
## ZooplanktonW2 0.005957316 0.0002005703 Inf 0.005402633 0.006511999 b
## ZooplanktonW4 0.006000148 0.0002598004 Inf 0.005281662 0.006718633 b
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 9 estimates
## P value adjustment: tukey method for comparing a family of 9 estimates
## significance level used: alpha = 0.05
No Contam vs. Contam
Test_Contam<-read.csv(file = "~/Dropbox/bdgallo_MS_SUNYESF/Ch2_Data_Files_Analysis/Tax4Fun_Microbial_Functions/CONTAM_KO_Effect.csv", header = TRUE, check.names = FALSE)
#ENV
Test_Contam_beta<-fitdist(Test_Contam$Environmental_Info, "beta")
cdfcomp(Test_Contam_beta, legendtext = "beta")
Test_Contam_beta_dist_C<-betareg(Test_Contam$Environmental_Info ~ Treatment, data=Test_Contam)
Anova(Test_Contam_beta_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: Test_Contam$Environmental_Info
## Df Chisq Pr(>Chisq)
## (Intercept) 1 263.402 <2e-16 ***
## Treatment 1 0.017 0.8963
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Cellular Processes (Motility)
Test_Contam_Cell_Proc_beta<-fitdist(Test_Contam$Cellular_Proc, "beta")
cdfcomp(Test_Contam_Cell_Proc_beta, legendtext = "beta")
Test_Contam_Cell_Proc_beta_dist<-betareg(Test_Contam$Cellular_Proc ~ Treatment, data=Test_Contam)
Anova(Test_Contam_Cell_Proc_beta_dist, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: Test_Contam$Cellular_Proc
## Df Chisq Pr(>Chisq)
## (Intercept) 1 263.402 <2e-16 ***
## Treatment 1 0.017 0.8963
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
#Metabolic
Test_Contam_metabolic<-fitdist(Test_Contam$Metabolic, "beta")
cdfcomp(Test_Contam_metabolic, legendtext = "beta")
Test_Contam_metabolic_dist_C<-betareg(Test_Contam$Metabolic ~ Treatment, data=Test_Contam)
## Warning in betareg.fit(X, Y, Z, weights, offset, link, link.phi, type,
## control): optimization failed to converge
summary(Test_Contam_metabolic_dist_C)
## Warning in sqrt(v * (1 - hatvalues(object))): NaNs produced
##
## Call:
## betareg(formula = Test_Contam$Metabolic ~ Treatment, data = Test_Contam)
##
## model did not converge
Anova(Test_Contam_metabolic_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: Test_Contam$Metabolic
## Df Chisq Pr(>Chisq)
## (Intercept) 1 13118.3 < 2.2e-16 ***
## Treatment 1 14.2 0.0001644 ***
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Test_Meta_marginal_C<-emmeans(Test_Contam_metabolic_dist_C, ~ Treatment)
pairs(Test_Meta_marginal_C, adjust = "tukey")
## contrast estimate SE df z.ratio p.value
## ArtemiaW4 - ArtemiaW4_C 0.002190303 0.0006141593 Inf 3.566 0.0004
cld(Test_Meta_marginal_C, alpha = 0.05, Letters = letters, adjust = "tukey")
## Treatment emmean SE df asymp.LCL asymp.UCL .group
## ArtemiaW4_C 0.01469381 0.0001740000 Inf 0.01430466 0.01508295 a
## ArtemiaW4 0.01688411 0.0005890271 Inf 0.01556676 0.01820145 b
##
## Confidence level used: 0.95
## Conf-level adjustment: sidak method for 2 estimates
## significance level used: alpha = 0.05
#Genetic Information
Test_Contam_gen<-fitdist(Test_Contam$Genetic_Info, "beta")
cdfcomp(Test_Contam_gen, legendtext = "beta")
Test_Contam_beta_dist_C<-betareg(Test_Contam$Genetic_Info ~ Treatment, data=Test_Contam)
## Warning in betareg.fit(X, Y, Z, weights, offset, link, link.phi, type,
## control): optimization failed to converge
summary(Test_Contam_beta_dist_C)
##
## Call:
## betareg(formula = Test_Contam$Genetic_Info ~ Treatment, data = Test_Contam)
##
## model did not converge
Anova(Test_Contam_beta_dist_C, type = 3)
## Analysis of Deviance Table (Type III tests)
##
## Response: Test_Contam$Genetic_Info
## Df Chisq Pr(>Chisq)
## (Intercept) 1 1970.5406 <2e-16 ***
## Treatment 1 0.7896 0.3742
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1